自定义错误页面不显示

发布于 2024-10-17 07:14:44 字数 464 浏览 0 评论 0原文

我正在尝试让 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半岛未凉 2024-10-24 07:14:45

我仍然不知道为什么找不到我的静态错误文件。然而,我最终通过定义一个错误控制器并将我的 web.config 更改为这个来解决了这个问题。

 <customErrors mode="On" defaultRedirect="/Error/GenericError" />

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.

 <customErrors mode="On" defaultRedirect="/Error/GenericError" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文