Hi,
I have an aspnetdb.mdf (ASP.NET membership database attached to my project), I transferred all tables to a Server Database but by default the application is still looking for the database attached:
Here's the web.config
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appSettings configSource="Configuration\Development\AppSettings.config" />
<system.web>
<xhtmlConformance mode="Strict" />
<trace enabled="false" pageOutput="false" />
<customErrors mode="Off" defaultRedirect="~/Error.aspx" />
<authentication mode="Windows" />
<roleManager enabled="true" />
<authorization>
<deny users="?" />
</authorization>
<compilation debug="true" strict="false&q ...
Go to the complete details ...