ASP.NET Webforms 和 MVC 3 中的成员资格提供程序之间的区别

发布于 2024-12-29 09:39:46 字数 80 浏览 2 评论 0原文

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 技术交流群。

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

发布评论

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

评论(2

粉红×色少女 2025-01-05 09:39:47

否。

  • 成员资格提供程序是 System.Web.Security 命名空间的一部分
  • Webforms 是 System.Web.UI 命名空间
  • MVC 是 System.Web.Mvc< /code> 命名空间

因此,不存在依赖关系。换句话说,您将在 MVC 应用程序中对相同的成员资格对象进行相同的成员资格调用,就像在 WebForms 应用程序中一样。

No.

  • The membership provider is part of the System.Web.Security namespace
  • Webforms is the System.Web.UI namespace
  • MVC is the System.Web.Mvc namespace

Therefore, 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.

女皇必胜 2025-01-05 09:39:47

不,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

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