0

嗨,我正在为内部用户使用以下代码

 <system.web>
    <compilation debug="true" targetFramework="4.0" />
    <authentication  />
    <authorization>
        <allow users="xyz\abc" />   
        <allow roles="Users" />
        <deny users="*" />
    </authorization>
     <identity impersonate="true" />
</system.web>

谁能告诉我如何将它定向到外部用户的 Login.aspx?

4

2 回答 2

1

这篇关于在 ASP.NET 中混合表单和 Windows 安全性的 MSDN 文章可能会有所帮助。

于 2013-05-22T20:16:48.583 回答
0
<authorization>
      <allow users="*" />
    </authorization>
    <authentication mode="Forms">
      <forms loginUrl="Login.aspx" timeout="30" />
    </authentication>

当用户未通过身份验证时,它将重定向到 Login.aspx

于 2013-05-22T20:12:32.560 回答