I want to use forms authentication in my asp.net mvc site.
Can I use an already existing sql db (on a remote server) for it? How do I configure the site to use this db for authentication? Which tables do I need/are used for authentication?
|
|
I want to use forms authentication in my asp.net mvc site. Can I use an already existing sql db (on a remote server) for it? How do I configure the site to use this db for authentication? Which tables do I need/are used for authentication?
|
||
|
|
|
|
You can. Check After creating the needed tables, you can configure: create a connection string in the web.config file and then set up the MemberShipProvider to use this connection string:
Ps: There are some very good articles about the whole concept here. |
||
|
|
|
|
The easiest manner is to just use the windows interface for the aspnet_regsql.exe application. You can find it in the c:\windows\microsoft.net\framework\v2.0.50727 folder. Just type in aspnet_regsql.exe, it will then open a wizard, this way you don't need to remember any command line switches. |
||
|
|