我在iis 7中部署了我的asp.net應用程序並允許匿名用戶,但是當我輸入用戶名和密碼時,它會多次請求Windows身份驗證。當我再次取消對話框時,它會將我重定向到主頁。請告訴如何解決它IIS請求Windows身份驗證
0
A
回答
2
0
通過在你的網站的web.config應該有允許匿名用戶:
<authorization>
<allow users="?"/>
<allow users="*"/>
</authorization>
此外匿名身份驗證必須啓用你的網站在IIS上。要啓用它,請在IIS中選擇您的站點並在右側找到認證圖標。打開它,啓用匿名身份驗證並禁用Windows驗證。
+0
在IIS中設置匿名也應該修改web.config。 –
相關問題
- 1. IIS http請求身份驗證問題
- 2. IIS請求在Windows身份驗證上登錄憑證
- 3. IIS/Windows身份驗證
- 4. WCF - IIS Windows身份驗證
- 5. Windows身份驗證多個請求
- 6. 響應IIS啓用Windows身份驗證的CORS請求
- 7. IIS Windows身份驗證IIS APPOOL
- 8. 身份驗證請求事件處理程序 - 自定義身份驗證IIS
- 9. ALDB身份驗證請求
- 10. Python ::請求身份驗證
- 11. iis 7禁用Windows身份驗證
- 12. IIS 5.1,Windows身份驗證,Active Directory的
- 13. IIS與Windows身份驗證綁定
- 14. LightSwitch和IIS 7 Windows身份驗證
- 15. IIS 8中的Windows身份驗證
- 16. 無法使用Windows身份驗證IIS
- 17. 匿名前的IIS Windows身份驗證
- 18. IIS Windows身份驗證奇怪
- 19. IIS - 缺少Windows身份驗證功能
- 20. 在IIS中使用Windows身份驗證
- 21. IIS 7和Windows身份驗證
- 22. .net 4.0 + WCF + WIndows身份驗證+ IIS
- 23. 在IIS中啓用Windows身份驗證
- 24. IIS http請求重定向與身份驗證
- 25. 從Objective-C向IIS發送請求時需要身份驗證
- 26. IIS 8和身份驗證
- 27. IIS身份驗證錯誤
- 28. 身份驗證問題IIS
- 29. WebServiceHostFactory和IIS身份驗證
- 30. IIS 7 Forms身份驗證
您是否在web.config中啓用了匿名用戶?還有,您是否在IIS站點的身份驗證部分中啓用了匿名身份驗證? –
請告訴我如何啓用這個東西 – Billz
你只使用IE瀏覽器還是瀏覽器組合? –