Add ASP.NET Membership tables to my own existing database, or should I instead configure a separate ASP.NET membership database?

前端 未结 1 1801
终归单人心
终归单人心 2020-12-12 21:55

I was reading through this post here MisfitGeek: Adding ASP.NET Membership to your OWN Database.

and thought to my self what the common practice is. What do develop

相关标签:
1条回答
  • 2020-12-12 21:58

    I personally just added the asp.net membership stuff to my own database. I then wrote a basic wrapper class around System.Web.Security.Membership class so that the code acts like its using its own membership stuff. Its pretty slick and not that hard to do. If you need assistance setting it up, here is what I did.

    The link you provided on how to set it up is waaaaaaaaaayy more complicated that what I used:

    1. Run C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regsql.exe.
    2. Hit Next.
    3. Select “Configure SQL Server for application services…” and hit Next.
    4. Select “Windows Authentication” and the “XXXX” Database and hit Next.
    5. Your settings are then presented...then hit Next.
    6. Finally you should be presented with a done screen, hit Finish.

    I have screenshots in the doc if you really need the walkthrough.

    0 讨论(0)
提交回复
热议问题