自定义错误页面不显示
我正在尝试让 ASP.Net MVC2 应用程序显示简单的自定义错误而不是黄屏。我已经设置了 elmah 在后台默默地记录错误,但是当发生这种情况时,我想根据 Shared/Error.aspx 中的视图显示一条简单的静态错误消息。没什么花哨的,只是一个普通的“有一个错误”。
<customErrors mode="On" defaultRedirect="~/Error.aspx" />
我认为这只是在我的配置中添加一个 customError 标签的问题,但我仍然看到黄页。我是否必须为 Error.aspx 视图编写自定义操作处理程序才能使用它?这可能是由于与 elmah 的一些互动造成的吗?
谢谢! Duffy
更新:问题似乎是 NInject 妨碍了处理静态错误页面。我看到的黄色屏幕错误不是原始错误消息,而是 NInject Factory 没有找到 error.aspx 的控制器。
I am trying to get an ASP.Net MVC2 app to display a simple custom error rather than the yellow screen. I have already set up elmah to silently log the error in the background but while that happens I want to display a simple static error message based on the view in Shared/Error.aspx. Nothing fancy, just a plain vanilla "there was an error".
<customErrors mode="On" defaultRedirect="~/Error.aspx" />
I thought this was simply a matter of adding a customError tag to my config but I am still seeing the yellow page. Do I have to write a custom action handler for the Error.aspx view before I can use it? Could this be due to some interaction with elmah?
Thanks!
Duffy
Update: It seems that the problem is NInject getting in the way of handling a static error page. The yellow sceen error I am seeing is not for the original error message but the NInject Factory not finding a controller for error.aspx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我仍然不知道为什么找不到我的静态错误文件。然而,我最终通过定义一个错误控制器并将我的 web.config 更改为这个来解决了这个问题。
I still have no idea why failed to find my static error files. However, I finally got around the problem by defining an error controller and changing my web.config to this instead.