Rank: Newbie
Groups: Member
Joined: 5/4/2006(UTC) Posts: 4
|
How do I attach the ASPNETDB? Please be gentle as I am not too familiar with SQL Server.
My shopping cart cart is held in there so I need it to be running.
THanks.
|
|
|
|
Rank: Administration
Groups: Administration, Member Joined: 1/3/2006(UTC) Posts: 348 Was thanked: 1 time(s) in 1 post(s)
|
Two steps is required here: 1) Get the SQL scripts from the following location C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 Files with the .sql extension (install....) Execute them against the db 2) Change your web.config to Code:
<membership defaultProvider="SqlProvider" userIsOnlineTimeWindow="15">
<providers>
<clear />
<add
name="SqlProvider"
type="System.Web.Security.SqlMembershipProvider"
connectionStringName="MsSqlConnection"
applicationName="MyApplication"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="true"
requiresUniqueEmail="true"
passwordFormat="Hashed" />
</providers>
</membership>
Is that clear enough? |
Noman Dormosh
HostingFest |
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.
Important Information:
The HostingFest Forums uses cookies. By continuing to browse this site, you are agreeing to our use of cookies.
More Details
Close