OK,
I''ve followed the advice and set up my connections string like was mentioned in the link that you gave me. I"ve went into my Develope Edition of SQL Server and built another database where I had all the user information, I also built anaspnetdb.mdf database on my local machine and put the path in the connection string.
Still get the same issue when I try to click on the aspnetdb.mdf under the solution explorer I still get the message that my SQLExpress is not configured or loaded yet I can see it. when I go to my server explorer I can pull the database up and see all the tables.
When I try and go to the ASP Net Configuration to set up the security it either can't find the database or says something is wrong in my connection string. Here is what I currently have in my web.config as part of my connection string.
Any help is greatly appreciated.
Thanks
<
add name="Elementary Login" connectionString="Data Source=dcwaynehess;Initial Catalog="Elementary Assessments";Integrated Security=True"providerName="System.Data.SqlClient" />
<
remove name ="LocalSqlServer"/>
<
add name="LocalSqlServer" connectionString="DataSource=Zeus;Initial Catalog ="Elementary Assessments";Integrated Security=True"providerName="System.Data.SqlClient" />
<
add name="Zeus" connectionString="DataSource=DCWAYNEHESS\SQLEXPRESS; AttachDbFilename= C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\aspnetdb.mdf"; IntegratedSecurity=True" /></connectionStrings>
<
system.web><authentication mode="Forms">
<
forms loginUrl="login.aspx" name="adAuthCookie" timeout="30" path="/"></forms>
</
authentication><authorization>
<
deny users="?"/><allow users="*"/>
</
authorization>