在Web.config文件中,这条信息就在那里
<authentication mode="Forms">
<forms loginUrl="~/Account/LogOn" timeout="2880" />
</authentication>
我可以设置其他模式,我可以使用多种模式吗?
有些用户可以使用username / pass登录,其他用户可以使用x509 clientCert登录。
这里有哪些信息?
答案 0 :(得分:3)
我们可以在mvc中使用五种身份验证模式...
<authentication mode="Federated"></authentication>
<authentication mode="Forms"></authentication>
<authentication mode="None"></authentication>
<authentication mode="Passport"></authentication>
<authentication mode="Windows"></authentication>