ASP.NET Webforms 和 MVC 3 中的成员资格提供程序之间的区别
Webforms 的 Membership Provider 和 MVC 3 的 Membership Provider 之间的工作方式有区别吗?
Is there a difference in the working between the Membership Provider of Webforms and Membership Provider of MVC 3?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
否。
System.Web.Security
命名空间的一部分System.Web.UI
命名空间System.Web.Mvc< /code> 命名空间
因此,不存在依赖关系。换句话说,您将在 MVC 应用程序中对相同的成员资格对象进行相同的成员资格调用,就像在 WebForms 应用程序中一样。
No.
System.Web.Security
namespaceSystem.Web.UI
namespaceSystem.Web.Mvc
namespaceTherefore, there are no dependencies. In other words, you'll be making the same membership calls with the same membership objects in an MVC application as you would in a WebForms application.
不,MVC只是微软使用的一种设计模式。因此,您可以在所有 ASP.Net 项目中使用成员身份。
即使在命名空间中,这一点也很明显:
系统.网络.安全
No, MVC is just a design pattern that Microsoft has utilized. So, you can use membership in all ASP.Net projects.
This is evident even in the namespace:
System.Web.Security