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" />

Signature
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
MetaFinder: http://www.blogmetafinder.com
> i have VS generated ASPNETDB.MDF file in my website.
>
[quoted text clipped - 8 lines]
> please provide me the connection string so that i can access that
> Database.