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

时间:2011-09-20 11:40:56

标签: asp.net-mvc-3 forms-authentication client-certificates

在Web.config文件中,这条信息就在那里

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

我可以设置其他模式,我可以使用多种模式吗?

有些用户可以使用username / pass登录,其他用户可以使用x509 clientCert登录。

这里有哪些信息?

1 个答案:

答案 0 :(得分:3)

我们可以在mvc中使用五种身份验证模式...

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