如何在 ASP.NET MVC 中推出自定义会员系统
我一直在阅读有关重写成员资格提供程序和角色提供程序的内容。我想这就是你在做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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用内置的会员资格提供程序
http://dotnetaddict.dotnetdevelopersjournal.com/aspnet35_membership.htm
或创建自定义成员资格
如何为 ASP.NET MVC 2 创建自定义成员资格提供程序?< /a>
http://www .asp.net/general/videos/how-do-i-create-a-custom-membership-provider
You could use the built in membership provider
http://dotnetaddict.dotnetdevelopersjournal.com/aspnet35_membership.htm
or create a custom one
How do I create a custom membership provider for ASP.NET MVC 2?
http://www.asp.net/general/videos/how-do-i-create-a-custom-membership-provider
是的,ASP.NET MVC 默认使用 Membership API。但是,如果您愿意,您始终可以使用自己的逻辑,但 Membership API 的大多数功能都已在其中。
您将需要:
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: