将 Membership Provider 与 ASP.NET MVC 结合使用是一个好主意
在 ASP.NET MVC 中,我们没有 Webform 的登录控件,那么使用 Membership Provider 仍然有意义吗?这是一个好的做法吗?
In ASP.NET MVC we dont have Login controls of webform, then still make sense use Membership Provider? It is a good practice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
成员资格提供程序与 Web 表单或将使用它的任何其他类无关,所以至少我可以说它不是一个坏主意。
Membership Provider is agnostic of Web Forms or any other classes where it will be used, so the least I can say is its not a bad idea.
会员提供程序只是一个数据存储,您可以随意使用它。恰巧有 ASP.NET 表单控件也知道如何使用它。
The Membership Provider is just a data store, use it as you wish. There just happen to be ASP.NET forms controls that also know how to use it.
是的,这仍然有道理。查看 Visual Studio 创建的默认项目(不是空项目),了解如何将其与 ASP.NET MVC 和单元测试一起使用。
Yes, it still makes sense. Take a look a the default project created by Visual Studio (not the empty one), to see how it can be used with ASP.NET MVC and unit tests.