up vote 14 down vote favorite
2
share [g+] share [fb]

I'm writing a helper method for ASP.NET MVC and I need to call Url.Content to get an appropriate URL for the context. However, in order to create a new UrlHelper() I need to get the current RequestContext (System.Web.Routing.RequestContext to be precise) and I'm not sure how to grab it. Anyone know?

link|improve this question

50% accept rate
The context location will depend on what the extension method will be extending. Will this be used in a view, controller or elsewhere? – Todd Smith Dec 9 '08 at 1:23
feedback

5 Answers

up vote 11 down vote accepted

Noticed this was still unanswered. As of MVC 1.0 you can do:

public static string NewHelperMethod(this HtmlHelper helper)
{
    UrlHelper url = new UrlHelper(helper.ViewContext.RequestContext);
link|improve this answer
I wanted to know how to do this from the controller, this answer gave me enough information to figure out that I wanted ControllerContext.RequestContext. – lambacck Sep 14 '09 at 22:11
feedback

If the current IHttpHandler is MvcHandler, you can use

((MvcHandler)HttpContext.Current.Handler).RequestContext
link|improve this answer
This is actually what I needed...from a truely static context – Kevin Apr 19 '10 at 22:11
Saved my day, thank you so much! – Barbaros Alp Sep 22 '10 at 22:47
feedback

You may have found an answer elsewhere, but here goes;

In a controller action, you can get to the current RequestContext like so:

public ActionResult SomeAction(){
  var helper = new UrlHelper(this.ControllerContext.RequestContext);
  ...
}
link|improve this answer
feedback

Don't create a new one. Just extend the existing UrlHelper, just like you'd extend HtmlHelper:

public static string IdLink(this UrlHelper helper, Guid id)
    { //...

If you must use both HtmlHelper and UrlHelper, pass one of them as a regular (non-"this") argument.

link|improve this answer
feedback

As mentioned above, just extend the HtmlHelper and the context is exposed in that way. For example:

    public static string ExtensionMethodName(this HtmlHelper html,object o)
    {
        html.ViewContext.HttpContext.Request.Uri ... etc    
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.