在Internet Explorer 9中測試我的ASP.NET MVC 3應用程序時,我得到的通用「Internet Explorer無法顯示網頁」錯誤而不是黃色屏幕。儘管如此,錯誤仍會引發到事件查看器。我怎樣才能讓我的黃色屏幕恢復,以便在瀏覽器中發現我的錯誤?「Internet Explorer無法顯示網頁」而不是YSOD?
回答
首先,您是否在IE中選中了不顯示錯誤消息的選項?其次,你是否在你的web.config中捕獲錯誤?第三,你是否設置IIS將錯誤消息返回給客戶端?
Web應用程序是一個混合型MVC/Web Forms項目。當我得到Web窗體錯誤但沒有MVC錯誤時,我得到YSOD。 –
查看http://stackoverflow.com/questions/6508415/application-error-not-firing-when-customerrors-on查找不適用於MVC的錯誤。 – Josh
閱讀您對Josh Im的評論,想知道它的WebForms + MVC而不是MVC + WebForms項目,如果這樣的話我在這裏找到一些信息http://forums.asp.net/t/1510043.aspx/3/10可能會解決這個問題。爲了方便,我總結了下面的有用位。
嘗試加入到這個web.config中的處理器部分:
<add name="ASP.NET MVC" path="*.mvc" verb="*" modules="IsapiModule" scriptProcessor="C:\Windows\Microsoft.NET\Framework\v4.0.21006\aspnet_isapi.dll" resourceType="Unspecified" requireAccess="Script" preCondition="classicMode,runtimeVersionv4.0,bitness32" />
其次這在Global.asax文件:
routes.MapRoute(
"Default", // Route name
"{controller}.mvc/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" }
- 1. 「Internet Explorer無法顯示網頁」
- 2. Internet Explorer&fire fox無法顯示網頁
- 3. IIS7:Internet Explorer無法顯示網頁
- 4. Internet Explorer無法顯示網頁?
- 5. 啓動本地主機顯示Internet Explorer無法顯示網頁
- 6. Silverlight:爲什麼我會收到「Internet Explorer無法顯示網頁」?
- 7. 使用Jquery後,Internet Explorer無法顯示網頁?
- 8. fileupload錯誤 - Internet Explorer無法顯示網頁
- 9. 在asp.net中出現錯誤「Internet Explorer無法顯示網頁」
- 10. 文件上傳 - Internet Explorer無法顯示網頁
- 11. IIS Express Internet Explorer無法顯示網頁...直到重新啓動
- 12. 刷新WebApp偶爾返回Internet Explorer無法顯示網頁
- 13. Internet Explorer網站顯示空白頁面
- 14. 因爲Internet Explorer無法顯示PHP中的網頁而出現錯誤
- 15. 使用Internet Explorer無法訪問網頁
- 16. Internet Explorer無法顯示本地圖像
- 17. Internet Explorer無法正確顯示javascript
- 18. IE不遵循重定向,給出「Internet Explorer無法顯示網頁」
- 19. Internet Explorer不顯示圖像
- 20. 網站在舊版本的Internet Explorer中無法正常顯示
- 21. 爲什麼Internet Explorer無法在網站上顯示圖像?
- 22. Internet Explorer不顯示網頁上的圖像
- 23. Drupal 7頁面在Internet Explorer中無法正常顯示
- 24. 爲什麼此頁面在Internet Explorer中無法正確顯示?
- 25. Internet Explorer 8顯示漸變而不是背景圖片
- 26. Internet Explorer在啓動Silverlight應用程序時無法顯示網頁
- 27. 部分用戶獲得「Internet Explorer無法顯示網頁」 - 如何調試?
- 28. 爲什麼我的網頁在Internet Explorer 6中無法正確顯示?
- 29. 在Internet Explorer中顯示某個頁面
- 30. 無法在Internet Explorer
你運行IIS 6/7/7.5?聽起來像擴展名的URL路由問題給我? – bUKaneer
我正在運行IIS 7.5 –