when i try to run the SignUp.aspx page which contains the CreateUserWizard control i get the following error, ive searched in forums over the web and tried a few things but ive had no luck.
ERROR:
The connection name 'ApplicationServices' was not found in the applications configuration or the connection string is empty.
Line 27: <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/" />
Web.Config
<?xml version="1.0" encoding="utf-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<system.web>
<!-- <pages styleSheetTheme="Red" /> early in the page phase, can be overriden by inline styles, viewed by masterpage
<pages theme="ThemeName" /> late in the page phase, enforce the theme style-->
<pages />
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Data.Entity.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
</assemblies>
<buildProviders>
<add extension=".edmx" type="System.Data.Entity.Design.AspNet.EntityDesig nerBuildProvider" />
</buildProviders>
</compilation>
<authentication mode="Forms">
<forms loginUrl="~/Account/Login.aspx" timeout="2880" />
</authentication>
<membership>
<providers>
<clear />
<add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/" />
</providers>
</membership>
<profile>
<providers>
<clear />
<add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" />
</providers>
</profile>
<roleManager enabled="false">
<providers>
<clear />
<add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" />
<add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider " applicationName="/" />
</providers>
</roleManager>
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true" />
</system.webServer>
<connectionStrings><add name="DatabaseEntities" connectionString="metadata=res://*/App_Code.IntranetModel.csdl|res://*/App_Code.IntranetModel.ssdl|res://*/App_Code.IntranetModel.msl;provider=System.Data.Sq lClient;provider connection string="data source=.\SQLEXPRESS;attachdbfilename=|DataDirector y|\Intranet.mdf;integrated security=True;user instance=True;multipleactiveresultsets=True;App=En tityFramework"" providerName="System.Data.EntityClient" /><add name="IntranetEntities" connectionString="metadata=res://*/App_Code.Model.csdl|res://*/App_Code.Model.ssdl|res://*/App_Code.Model.msl;provider=System.Data.SqlClient; provider connection string="data source=.\SQLEXPRESS;attachdbfilename=|DataDirector y|\Intranet.mdf;integrated security=True;user instance=True;multipleactiveresultsets=True;App=En tityFramework"" providerName="System.Data.EntityClient" /></connectionStrings>
</configuration>