在 Asp.Net MVC 中,身份验证模式还有哪些其他选项?

发布于 2024-12-05 18:41:17 字数 278 浏览 1 评论 0原文

在 Web.config 文件中,有这条信息

<authentication mode="Forms">
  <forms loginUrl="~/Account/LogOn" timeout="2880" />
</authentication>

我还可以设置哪些其他模式?我可以有多种模式吗?

一些用户可以使用用户名/密码登录,其他用户则使用 x509 clientCert。

哪里有这方面的一些信息?

In the Web.config file this piece of info is there

<authentication mode="Forms">
  <forms loginUrl="~/Account/LogOn" timeout="2880" />
</authentication>

What other mode can I set and could I have multiple modes?

Some users could logon using username/pass, others with x509 clientCert.

Where is there some info on this?

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

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

发布评论

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

评论(1

笑看君怀她人 2024-12-12 18:41:17

mvc 中我们可以有五种身份验证模式...

<authentication mode="Federated"></authentication>
<authentication mode="Forms"></authentication>
<authentication mode="None"></authentication>
<authentication mode="Passport"></authentication>
<authentication mode="Windows"></authentication>

We can have five authentication modes in mvc ...

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