I need your help with ASP Website Administration Tool! I already tried this:
Visual Studio 2013 and ASP.NET Web Configuration Tool
and this
ASP.NET Website Administrator Tool in VS 2013
I also tried uninstalling SQL Server but nothing changed I still couldn't get into the Web Admin Tool!Well, actually I have but the moment I click the security tab it will say that it is Unable to connect to SQL Server database.
heres my web connection string:
<connectionStrings>
<add name="SecurityDB" connectionString="Data Source=Ryan;Initial Catalog=SecurityDB;Integrated Security=True" providerName="System.Data.SqlClient"/>
and the membership and the role
<authentication mode="Forms" />
<membership>
<providers>
<clear/>
<add
name="AspNetSqlMembershipProvider"
type="System.Web.Security.SqlMembershipProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
connectionStringName="SecurityDB"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="false"
applicationName="/"
requiresUniqueEmail="false"
passwordFormat="Hashed"
maxInvalidPasswordAttempts="5"
minRequiredPasswordLength="9"
minRequiredNonalphanumericCharacters="0"
passwordAttemptWindow="10"
passwordStrengthRegularExpression=""/>
</providers>
</membership>
<roleManager enabled="true" defaultProvider="MyRoleProvider">
<providers>
<clear/>
<add
name="MyRoleProvider"
connectionStringName="SecurityDB"
applicationName="/"
type="System.Web.Security.SqlRoleProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
</providers>
</roleManager>
and btw I also tried using aspnet_regsql.exe hoping that it might help but unfortunately it didn't. I also checked the machine.config and i just copy pasted the role and membership block after that I change to the connectionStringName to the one I'm currently using(SecurityDB).