I am novice in asp.net and, I have design a website which is having small database (MS sql server), which is working fine on server but for users login, I have given asp.net membership security, which is not working, because its database is still in the app_data file. Now, how can I transfer membership database on my existing website's server.
Asked
Active
Viewed 1,332 times
2 Answers
6
First you have to setup the SQL Server Database to implement asp.net Membership. In order to do that you have to execute the aspnet_Regsql.exe found in C:\WINDOWS\Microsoft.NET\Framework\\aspnet_regsql.exe More information Here
Next you have to create the connection strings in your web.config to point to the right database for Membership.
Scott Guthrie has an older Blog post that explains the whole process

Nikos Steiakakis
- 5,605
- 7
- 44
- 54