Skip to content Skip to sidebar Skip to footer

Asp.net: How Can I Introduce Aspnet_regsql To Login Controls

I setup aspnet_regsql in my SQL Server called SYM\SQLEXPRESS but it is in the remote computer. As you know, there are some tables created automaticly (Users, Roles, Membership etc)

Solution 1:

  1. Alternativly, go C:\Windows\Microsoft.NET\Framework\v4.0.30319 folder.

  2. Run aspnet_regsql.exe

  3. Write Server Name: YourServerMachine\SQLExpress

  4. Select Existing Database: YourTargetDBName (which you already have)

  5. Click Finish.

  6. Open WebSite in Visual Studio 2010.

  7. Make Changes in `Web.Config

    webconfig

  8. Using Visual Studio 2010 Go to Website tab.

  9. Click on ASP.NET Configuration

  10. You can change your security and provider settings.

Post a Comment for "Asp.net: How Can I Introduce Aspnet_regsql To Login Controls"