在 Asp.Net MVC 中,身份验证模式还有哪些其他选项?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
mvc 中我们可以有五种身份验证模式...
We can have five authentication modes in mvc ...