回答

9

創建一個單獨的頁面來處理Windows登錄。此頁面將驗證用戶,然後爲他們設置Forms Cookie。然後,將該頁面添加到web.config中,以告知IIS 7在該特定頁面上使用Windows身份驗證。

<configuration> 
... 
<!-- this file captures the user and redirects to the login page --> 
    <location path="Account/WindowsLogin.aspx"> 
    <system.web> 
     <authorization> 
     <allow users="*" /> 
     </authorization> 
    </system.web> 
    <system.webServer> 
     <security> 
     <authentication> 
      <windowsAuthentication enabled="true" /> 
      <anonymousAuthentication enabled="false" /> 
     </authentication> 
     </security> 
    </system.webServer> 
    </location> 
</configuration> 
相關問題