RE: In ASP.Net 2.0 Login controls if you want to have ...
Create Table User with fields (UserID Primary Key UserName Password) Roles(RoleID Primary Key RoleName) and UserRoles(id Primary Key UserID Foreigh Key RoleID Foreign Key).Populate the above tables with data. You can authenticate users based on roles from now by simply configuring web.config file.
RE: In ASP.Net 2.0 Login controls if you want to have ...
you can run a command aspnet_regsql from visual studio 2005 command prompt and configuer your own custom data base in sqlserver machine and change the web.config file settings .
RE: In ASP.Net 2.0 Login controls if you want to have ...
Actually running aspnet_regsql on the desired DB and then using the default SQLMembership and SQLRole provider can suffice your requirement. If you dont plan to extend this feature you dont need to author you own providers.