logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
pointblank  
#1 Posted : Thursday, May 4, 2006 4:29:56 AM(UTC)
pointblank
Rank: Newbie

Reputation:

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.
Smiling4ever  
#2 Posted : Thursday, May 4, 2006 4:48:23 AM(UTC)
Smiling4ever
Rank: Administration

Reputation:

Groups: Administration, Member
Joined: 1/3/2006(UTC)
Posts: 348
Man

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
Users browsing this topic
Guest
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.