5
如何使用在IIS 7.0上運行的表單身份驗證將Windows用戶驗證到網站中?如何在IIS 7.0中允許混合模式身份驗證
如何使用在IIS 7.0上運行的表單身份驗證將Windows用戶驗證到網站中?如何在IIS 7.0中允許混合模式身份驗證
創建一個單獨的頁面來處理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>