asp.net mvc4应用程序中的Windows授权

时间:2013-09-11 10:22:44

标签: asp.net .net asp.net-mvc-4 web-config authorization

我的asp.net mvc4应用程序中有一个授权错误。我的机器的帐户管理员就是这个

admin

我的会话属性:

se

在我的web.config文件中我把这个片段:

 <authentication mode="Windows" />
    <authorization>
      <allow  users = "Lamloumi" />
      <deny users="?"/>
    </authorization>

当我启动应用程序时,我无法访问它。

出现此错误的原因是什么?我该如何修复我的代码?

3 个答案:

答案 0 :(得分:1)

请参阅here,这可能有所帮助。

之前已经提出了类似的问题

答案 1 :(得分:1)

尝试使用它:

<configuration>
<authentication mode="Windows" />
  <system.web>
    <authorization>
      <allow  users = "Lamloumi" />
      <deny users="?"/>
    </authorization>
  </system.web>
</configuration>

答案 2 :(得分:1)

尝试将域名添加到allow

 <allow users="DomainName\UserName" />