有谁知道如何从global.asax中的Application_Error事件获取当前的RequestContext?我的问题是我需要进行重定向,因此需要使用UrlHelper生成url - 它采用前面提到的RequestContext.
虽然没有直接访问RequestContext的方法,但您可以自己创建一个:
RequestContext context = new RequestContext(new HttpContextWrapper(HttpContext.Current), RouteTable.Routes.GetRouteData(new HttpContextWrapper(HttpContext.Current)))
所以UrlHelper可以通过以下方式构建:
UrlHelper helper = new UrlHelper(new RequestContext(new HttpContextWrapper(HttpContext.Current), RouteTable.Routes.GetRouteData(new HttpContextWrapper(HttpContext.Current))));
不漂亮,但它完成了工作.
您可以使用访问请求上下文
HttpContext.Current.Request.RequestContext
或者,如果你在Global.asax
你可以使用
Context.Request.RequestContext
直.