Posted on: 3/20/2014 2:21:20 PM | Views : 842

**** Figured it Out ****

I used the ASP.NET Configuration tool to set up my asp.net membership (4.0) in VS2012.  I restored the generated aspnetdb.mdf to a new database in my SQL Server 2012 and verified that all tables and SPROCs during teh emmebrship setup were restored succesfully.  I updated my web.config connection string to connect to my SQL Server 2012 DB.  I excluded teh auto-generated aspnetdb.mdf from project. I run the application and tried logging in, with success, check me VS 2012 to see the aspnetdb.mdf is regenerated.
How do I set up my applciatio to successsfully connect to the SQL Server 2012 restored database and have VS 2012 recognize the Memerbship schema associated with that DB?
Here are some important sections of my web.config that should help with this connectivity and does not:
<membership> <providers> <clear/> <add name=&q ...

Go to the complete details ...