ASP.net 会员提供程序客户端或服务器端身份验证

发布于 2024-10-08 16:41:11 字数 64 浏览 3 评论 0原文

我正在开发一个 MVC2 应用程序,并使用内置的会员资格提供程序。我只是问自己身份验证是在服务器上还是在客户端上?

I am developing an MVC2 application an am using the built in Membership provider. I am just asking myself if the authentication is on the server or the client?

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

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

发布评论

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

评论(2

っ〆星空下的拥抱 2024-10-15 16:41:11

身份验证在服务器上。

真的想说在荒无人烟的地方=)

Authentication is on the server.

Really wanted to say "In the middle of nowhere" =)

浅唱々樱花落 2024-10-15 16:41:11

如上所述,这作为 Asp.net 中构建的身份验证/授权过程的一部分发生在服务器上。重写应用程序类 (Global.asax.cs) 中的 BeginRequest 和 AuthenticateRequest,以比较身份验证前后当前用户 (HttpContext.Current.User) 的状态。有关详细信息,请查看 HttpApplication 类的文档。

As stated above, this occurs on the server as part of the Authentication/Authorization process build into Asp.net. Override BeginRequest and AuthenticateRequest within your application class (Global.asax.cs) to compare the state of the current user (HttpContext.Current.User) before and after authentication. For more information check out the documentation on the HttpApplication class.

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