我正在尝试使用T4MVC设置filterContext.Result = new RedirectResult
我现有的电话是:
filterContext.Result = new RedirectResult("/account/login?ErrorCode=" + ServiceLocator.ExceptionHelper().NotLoggedInError.Code);
我要替换。
T4MVC有可能吗?
最佳答案
不知道这是否是最好的方法,但这可以工作:
filterContext.Result = new RedirectResult(Url.Action(MVC.Account.Login(ServiceLocator.ExceptionHelper().NotLoggedInError.Code)));
关于asp.net-mvc - 从T4MVC创建RedirectResult,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20646829/