我正在尝试使用T4MVC设置filterContext.Result = new RedirectResult
我现有的电话是:
filterContext.Result = new RedirectResult("/account/login?ErrorCode=" + ServiceLocator.ExceptionHelper().NotLoggedInError.Code);
我想替换它。
这可能与T4MVC有关吗?
答案 0 :(得分:1)
不确定它是否是最佳方式,但这有效:
filterContext.Result = new RedirectResult(Url.Action(MVC.Account.Login(ServiceLocator.ExceptionHelper().NotLoggedInError.Code)));