我正在为ASP.NET MVC编写一个帮助方法,我需要调用Url.Content
以获取上下文的适当URL.但是,为了创造一个新的UrlHelper()
我需要获得当前RequestContext
(System.Web.Routing.RequestContext
确切地说),我不知道如何抓住它.谁知道?
如果当前的IHttpHandler是MvcHandler,则可以使用
((MvcHandler)HttpContext.Current.Handler).RequestContext
注意到这仍然没有答案.从MVC 1.0开始,您可以:
public static string NewHelperMethod(this HtmlHelper helper) { UrlHelper url = new UrlHelper(helper.ViewContext.RequestContext);