Global.asax中redirecttoroute不工作(global.asax redirec

2019-08-16 16:19发布

我想用我的Global.asax与response.redirecttoroute定制的路线,但它无法正常工作。 我在RouteConfig如下:

routes.MapRoute(
            name: "Error",
            url: "Error/{action}/{excep}",
            defaults: new { action = "Index", excep = UrlParameter.Optional }
        );

而在我的Global.asax我做到以下几点:

Response.RedirectToRoute("Error", new { action="Index", excep=ex.Message });

在我ErrorController我有:

public ActionResult Index(string excep)
    {
        ViewBag.Exception = excep;

        return View();
    }

而在为我的错误索引视图我叫ViewBag.Exception显示异常。

当我使用:

Response.Redirect("/Error/Index/0/"+ex.Message, true);

而在我的控制器使用:

public ActionResult Index(int? id,string excep)
    {
        ViewBag.Exception = excep;

        return View();
    }

它的工作原理,但这是默认路由,而不是我想要的。 为什么它有一个重定向,但不能与redirecttoroute工作?

Answer 1:

我面临着同样的问题,但现在我找到了解决办法。 也许你可以试试这个:就在类名或变量名称重命名为您的需求。 从你的Global.asax改变任何清除浏览器缓存后的注意事项。 希望这可以帮助。

Global.asax中

  public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
       //Make sure this route is the first one to be added
        routes.MapRoute(
           "ErrorHandler",
           "ErrorHandler/{action}/{errMsg}",
           new { controller = "ErrorHandler", action = "Index", errMsg=UrlParameter.Optional}
           );
        routes.MapRoute(
            "Default", // Route name
            "{controller}/{action}/{id}", // URL with parameters
            new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
        );

    }

一旦出现异常unhandles重定向从您的Global.asax Application_Error事件到你的错误处理程序的响应

 protected void Application_Error(object sender, EventArgs e)
        {
            var errMsg = Server.GetLastError().Message;
            if (string.IsNullOrWhiteSpace(errMsg)) return;
            //Make sure parameter names to be passed is are not equal
            Response.RedirectToRoute("ErrorHandler", new { strErrMsg=errMsg });
            this.Context.ClearError();
        }

错误处理控制器

public class ErrorHandlerController : Controller
    {

        public ActionResult Index(string strErrMsg)
        {
            ViewBag.Exception = strErrMsg;
            return View();
        }

    }

为了测试在HomeController中的索引的ActionResult错误处理程序添加以下代码。

public class HomeController : Controller
    {
        public ActionResult Index()
        {
            //just intentionally add this code so that exception will occur
            int.Parse("test");
            return View();
        }
    }

输出将是



Answer 2:

这另一个问题有着相当不错的答案: RedirectToRoute应该如何使用?

我会尝试添加Response.End()RedirectToRoute ,看是否可行。



Answer 3:

这是我如何解决使用MVC 4我的问题:

RouteConfig.cs

    routes.MapRoute(
            name: "ErrorHandler",
            url: "Login/Error/{code}",
            defaults: new { controller = "Login", action = "Error", code = 10000 } //default code is 10000
        );

    routes.MapRoute(
            name: "Default",
            url: "{controller}/{action}/{id}",
            defaults: new { controller = "Login", action = "Index", id = UrlParameter.Optional }
        );

的Global.asax.cs

    protected void Application_Start()
    {
            //previous code
            RouteConfig.RegisterRoutes(RouteTable.Routes);

            this.Error += Application_Error; //register the event
    } 

    public void Application_Error(object sender, EventArgs e)
    {
            Exception exception = Server.GetLastError();
            CustomException customException = (CustomException) exception;
            //your code here

            //here i have sure that the exception variable is an instance of CustomException.
            codeErr = customException.getErrorCode(); //acquire error code from custom exception

            Server.ClearError();

            Response.RedirectToRoute("ErrorHandler", new
                                    {
                                            code = codeErr
                                    });
            Response.End();
    }

这是使用方法: 一定要到Response.End放()在Application_Error事件的结束 。 否则,重定向路由将无法正常工作。 具体而言,编码参数将不会被传递到控制器的操作方法。

的LoginController

    public class LoginController : Controller
    {
           //make sure to name the parameter with the same name that you have passed as the route parameter on Response.RedirectToRoute method.
           public ActionResult Error(int code)
           {
                   ViewBag.ErrorCode = code;

                   ViewBag.ErrorMessage = EnumUtil.GetDescriptionFromEnumValue((Error)code);

                   return View();
           }
    }


文章来源: global.asax redirecttoroute not working