如何在 ASP.NET MVC 中推出自定义会员系统

发布于 2024-08-31 16:00:54 字数 110 浏览 2 评论 0原文

我一直在阅读有关重写成员资格提供程序和角色提供程序的内容。我想这就是你在做Asp.net Form项目时需要做的事情。这也是 Asp.net MVC 项目的方法还是有更好的方法?

谢谢 :)

I've been reading about overriding the Membership Provider and the Role Provider. I think this is what you need to do when doing Asp.net Form projects. Is this also the way to go with Asp.net MVC projects or there is a better way to do so?

Thanks :)

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

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

发布评论

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

评论(2

哀由 2024-09-07 16:00:54

是的,ASP.NET MVC 默认使用 Membership API。但是,如果您愿意,您始终可以使用自己的逻辑,但 Membership API 的大多数功能都已在其中。

您将需要:

  • 自定义 MembershipProvider
  • 如果您使用角色,则需要自定义 RoleProvider
  • 如果您使用配置文件,则需要自定义 ProfileProvider

Yes, ASP.NET MVC uses the Membership API by default. However, you can always use your own logic if you want to, but most functionality for the Membership API is in there already.

You'll need:

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