How to pass error message to error view in MVC 5?

后端 未结 3 701
太阳男子
太阳男子 2021-02-06 13:05

I am working on exception handling and have written below code for the same.

Web.Config



        
相关标签:
3条回答
  • 2021-02-06 13:22

    You can try sending like this

    filterContext.HttpContext.Items["Exception"] = Exception.Message;
    
    0 讨论(0)
  • 2021-02-06 13:23

    I know this is an old post but I just want to share the easiest way to do it. Just paste this in your Web.config

     <system.web>
     <customErrors mode="On" defaultRedirect="~/home">
          <error statusCode="404" redirect="~/Error.html"/>
          <error statusCode="403" redirect="~/Error.html"/>
      </customErrors>
     <system.web>
    
    0 讨论(0)
  • 2021-02-06 13:36
    public class CustomExceptionFilter : HandleErrorAttribute {
        public override void OnException(ExceptionContext filterContext) {
    
            var controller = filterContext.Controller as Controller;
            controller.Response.StatusCode = (int)System.Net.HttpStatusCode.InternalServerError;
            controller.Response.TrySkipIisCustomErrors = true;
            filterContext.ExceptionHandled = true;
    
            var controllerName = (string)filterContext.RouteData.Values["controller"];
            var actionName = (string)filterContext.RouteData.Values["action"];
            var exception = filterContext.Exception;
            //need a model to pass exception data to error view
            var model = new HandleErrorInfo(exception, controllerName, actionName);
    
            var view = new ViewResult();
            view.ViewName = "Error";
            view.ViewData = new ViewDataDictionary();
            view.ViewData.Model = model;
    
            //copy any view data from original control over to error view
            //so they can be accessible.
            var viewData = controller.ViewData;
            if (viewData != null && viewData.Count > 0) {
                viewData.ToList().ForEach(view.ViewData.Add);
            }
    
            //Instead of this
            ////filterContext.Result = view;
            //Allow the error view to display on the same URL the error occurred
            view.ExecuteResult(filterContext);
    
            //should do any logging after view has already been rendered for improved performance.
            //_logger.Error("Uncaught exception", exception);
    
        }
    }
    

    Views/Shared/Error.cshtml

    @model System.Web.Mvc.HandleErrorInfo
    @{
        ViewBag.Title = "Error";
    }
    <div class="row">
        <div class="col-sm-12">
            <h1>Error</h1>
            <div class="col-sm-12">
                <h2>An error occurred while processing your request.</h2>
            </div>
            <div>
                @{
                    if (Model != null && Model.Exception != null) {
                        <h5>Here is some information you can pass on to the administrator</h5>
                        <h3>Path: ~/@string.Format("{0}/{1}", Model.ControllerName, Model.ActionName)</h3>
                        <h4>Error: @Model.Exception.GetType().Name</h4>
                        if (Request.IsLocal) {
                            <h4>Message: @Model.Exception.Message</h4>
                            <h5>@Model.Exception.StackTrace</h5>
                        }
                    }
                }
            </div>
        </div>
    </div>
    

    Web.Config

    <customErrors mode="Off"/>
    
    0 讨论(0)
提交回复
热议问题