如何配置会员提供程序以在我自己的数据库中插入数据

发布于 2024-08-29 08:41:38 字数 31 浏览 4 评论 0原文

如何配置会员提供程序以在我自己的数据库中插入数据

How can I configure membership provider to insert data on my own database

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清欢 2024-09-05 08:41:38

编写自定义成员资格提供程序以使用自定义数据库(如果您想使用完全不同的数据库架构)或按照此处的步骤操作:

如何更改我的 ASP.NET 会员数据库

Write a custom Membership Provider to use your custom database (if you want to use a completely different database schema) or follow the steps here:

How Do I Change My ASP.NET Membership Database

救星 2024-09-05 08:41:38

您可以创建自定义 MembershipProvider 来处理自定义身份验证系统。你必须实现一堆方法。这是一个示例,

public class DreemMembershipProvider : MembershipProvider
{
...
   public override MembershipUser CreateUser(string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, object providerUserKey, out MembershipCreateStatus status)
   {
       //your code to insert a user in the db.
   }

   public override bool ValidateUser(string username, string password)
   {
         //your code to check the user and pass against your db 
   }
   ...
}

最后您必须将应用程序设置为使用您的会员提供商 ->在 web.config 中

You can create a custom MembershipProvider to deal with a custom authentication system. You have to implement a bunch of methods. Here is an example

public class DreemMembershipProvider : MembershipProvider
{
...
   public override MembershipUser CreateUser(string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, object providerUserKey, out MembershipCreateStatus status)
   {
       //your code to insert a user in the db.
   }

   public override bool ValidateUser(string username, string password)
   {
         //your code to check the user and pass against your db 
   }
   ...
}

finally you have to set your app to use your membership provider -> in the web.config

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文