Verwendung: filterContext.RedirectToAction("Login", "Account");
Hier ist eine Hilfsklasse, die ich mit einigen Erweiterungsmethoden geschrieben habe, die geschrieben wurden, um an mehreren Stellen RedirectToAction-Funktionen bereitzustellen. Dies ist viel zu spät für das OP, aber hoffentlich hilft es jemandem!
public static class RedirectHelper
{
public static void RedirectToAction(this HttpResponseBase response, String action, String controller, object routeValues = null, bool endResponse = false)
{
response.RedirectToRoute(CreateRoute(action, controller, routeValues));
if (endResponse) response.End();
}
public static void RedirectToAction(this HttpResponse response, String action, String controller, object routeValues = null, bool endResponse = false)
{
response.RedirectToRoute(CreateRoute(action, controller, routeValues));
if (endResponse) response.End();
}
public static void RedirectToAction(this ActionExecutingContext filterContext, String action, String controller, object routeValues = null, bool endResponse = false)
{
if (endResponse) filterContext.HttpContext.Response.RedirectToAction(action, controller, routeValues, true);
else filterContext.Result = new RedirectToRouteResult(CreateRoute(action, controller, routeValues));
}
public static void RedirectToAction(this ExceptionContext filterContext, String action, String controller, object routeValues = null, bool endResponse = false)
{
if (endResponse) filterContext.HttpContext.Response.RedirectToAction(action, controller, routeValues, true);
else {
filterContext.ExceptionHandled = true;
filterContext.Result = new RedirectToRouteResult(CreateRoute(action, controller, routeValues));
}
}
public static RouteValueDictionary CreateRoute(String action, String controller, object routeValues = null)
{
RouteValueDictionary result = routeValues != null ?
HtmlHelper.AnonymousObjectToHtmlAttributes(routeValues) :
new RouteValueDictionary();
result["controller"] = controller;
result["action"] = action;
return result;
}
}
Es gibt mehr ControllerContexts, die nicht enthalten sind, aber es sollte ziemlich einfach sein, Ihre eigenen basierend auf Ihren Anforderungen hinzuzufügen.
OnException
Methode einfügen , solange Sie festlegenfilterContext.ExceptionHandled = true;