Membership

A

Alexk

I recreated the first membership sample from Scott's membership series from
4guysfrom Rolla.com and got the following error. Any suggestions

Thanks
Alex.


Cannot open database "aspnetdb" requested by the login. The login failed.
Login failed for user 'Alex-PC\test'.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Data.SqlClient.SqlException: Cannot open database
"aspnetdb" requested by the login. The login failed.
Login failed for user 'Alex-PC\test'.

Source Error:

An unhandled exception was generated during the execution of the current web
request. Information regarding the origin and location of the exception can
be identified using the exception stack trace below.


This is the listing for my web.config file
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">


<!-- You should ALWAYS customize the Membership provider and specify an
applicationName... see
http://weblogs.asp.net/scottgu/arch...P.NET-2.0-Membership-and-other-Providers.aspx
for more details... -->
<!--membership defaultProvider="CustomizedProvider">
<providers>
<add name="CustomizedProvider"
type="System.Web.Security.SqlMembershipProvider"
connectionStringName="LocalSqlServer" applicationName="/"
minRequiredPasswordLength="5" minRequiredNonalphanumericCharacters="0"/>
</providers>
</membership>-->

<!--The following code example shows how to configure an ASP.NET
application to use the
SqlMembershipProvider provider to store and retrieve user account
information.-->

<connectionStrings>
<add name="SqlServices"
connectionString="Data Source=Alex-PC\SVAIO2005;Integrated
Security=SSPI;Initial Catalog=aspnetdb;" />

</connectionStrings>
<system.web>
<authentication mode="Forms"/>

<membership
defaultProvider="SqlProvider"
userIsOnlineTimeWindow="20">
<providers>
<remove name="AspNetSqlProvider" />
<add name="SqlProvider"
type="System.Web.Security.SqlMembershipProvider"
connectionStringName="SqlServices"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="true"
passwordFormat="Hashed"
applicationName="/" />
</providers>
</membership>
<compilation debug="true"/>

</system.web>




</configuration>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,733
Messages
2,569,439
Members
44,829
Latest member
PIXThurman

Latest Threads

Top