I want to know how to redirect to a particular route from outside the controller. I have a custom attribute that I need to redirect the route in.
public override void OnAuthorization(System.Web.Mvc.AuthorizationContext filterContext)
{
// Want to redirect to route here.
base.OnAuthorization(filterContext);
}