来自远程服务器的站点上的基本身份验证不起作用

时间:2011-12-09 15:31:53

标签: iis-7 forms-authentication asp.net-4.0 basic-authentication

我使用SHA1 pw和存储在web.config中的凭据设置了一个非常基本的身份验证模式。

部署.Net 4.0站点(在IIS 7中)后,当我从站点所在的服务器转到www位置时,我可以成功登录。

但是,当尝试从另一台计算机上的浏览器登录时,输入相应的凭据只会循环回到登录屏幕。

在网站的IIS身份验证中,我启用了匿名,基本和表单。

  <system.web>
    <compilation debug="true" targetFramework="4.0">
    </compilation>
    <authentication mode="Forms">
      <!-- <forms loginUrl="~/Account/Login.aspx" timeout="2880"/> -->
      <forms name=".ASPXFORMSAUTH" loginUrl="~/Account/Login.aspx" defaultUrl="~/AdminPages/Default.aspx" cookieless="UseCookies"  timeout="30">
        <credentials passwordFormat="SHA1">
          <user name="user1" password="77A80B8DE9F00DD1CC502344C38FC1BA24CC0897" />
          <user name="user2" password="329E66AD5EC6E09AA8002311ACAF6ADBACD12DC4" />
        </credentials>
      </forms>
    </authentication>
    <authorization>
      <deny users="?" />
    </authorization>
  </system.web>
  <location path="Styles">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>
  <location path="Scripts">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>
  <location path="Account">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>
  <location path="AdminPages">
    <system.web>
      <authorization>
        <allow users="user1,user2"/>
        <deny users="*"/>
      </authorization>
    </system.web>
  </location>

有什么想法吗?

感谢。

0 个答案:

没有答案