Asp.net MVC 3视图引擎错误

发布于 2024-12-06 04:59:04 字数 727 浏览 0 评论 0原文

我正在尝试在 Application_Error 中进行全局级别的自定义错误处理。

    Exception ex = Server.GetLastError();
    Server.ClearError();
    AssortmentDefinitionLogManager.LogException(ex);
    Context.RewritePath("/Error/Error");
    IHttpHandler httpHandler = new MvcHttpHandler();
    httpHandler.ProcessRequest(Context);

但我收到这个错误

Error Message - The view '~/Views/Shared/Error' or its master was not found or no view engine supports the searched locations.

我也尝试过这个

        var urlHelper = new UrlHelper(HttpContext.Current.Request.RequestContext);
        var redirectUrl = urlHelper.Action("Error", "Error");

        Response.Redirect(redirectUrl);

I am trying for custom error handling at global level in Application_Error.

    Exception ex = Server.GetLastError();
    Server.ClearError();
    AssortmentDefinitionLogManager.LogException(ex);
    Context.RewritePath("/Error/Error");
    IHttpHandler httpHandler = new MvcHttpHandler();
    httpHandler.ProcessRequest(Context);

But i get this error

Error Message - The view '~/Views/Shared/Error' or its master was not found or no view engine supports the searched locations.

I have also tried this

        var urlHelper = new UrlHelper(HttpContext.Current.Request.RequestContext);
        var redirectUrl = urlHelper.Action("Error", "Error");

        Response.Redirect(redirectUrl);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

风铃鹿 2024-12-13 04:59:04

创建一个名为 ErrorController 的控制器,并在该控制器内创建一个名为 Error 的操作方法,该方法返回 ActionResult(或 ViewResult)。

然后在 ~/Views/Error/ 下创建一个名为 error.cshtml 的视图。

这将解决您的问题。

create a controller called ErrorController and inside this controller create an action method called Error which returns an ActionResult (or ViewResult).

Then create a view under ~/Views/Error/ called error.cshtml.

This will solve your problem.

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