problem in user authentication

  • Thread starter Thread starter sravan_reddy001
  • Start date Start date
S

sravan_reddy001

i have VS generated ASPNETDB.MDF file in my website.

I want to modify that database by adding some more tables to it. So,
in order to connect to the database i want a connection string to that
database.

the content of web.config file for connectionStrings is
<connectionStrings/>
i'm able to login..

please provide me the connection string so that i can access that
Database.
 
What you should be doing is using your own database, and simply enable it for
membership, roles and profile by running ASPNET_REGSQL with the proper
switches. They you can abandon the ASPNETDB.MDF, and change the provider
connection string to match. Use <remove name="LocalSqlServer" />
 
Back
Top