从T4MVC创建RedirectResult

时间:2013-12-17 23:31:41

标签: asp.net-mvc t4mvc

我正在尝试使用T4MVC设置filterContext.Result = new RedirectResult

我现有的电话是:

filterContext.Result = new RedirectResult("/account/login?ErrorCode=" + ServiceLocator.ExceptionHelper().NotLoggedInError.Code);

我想替换它。

这可能与T4MVC有关吗?

1 个答案:

答案 0 :(得分:1)

不确定它是否是最佳方式,但这有效:

filterContext.Result = new RedirectResult(Url.Action(MVC.Account.Login(ServiceLocator.ExceptionHelper().NotLoggedInError.Code)));