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?
feedback
|
|
Noticed this was still unanswered. As of MVC 1.0 you can do:
| |||
feedback
|
|
If the current IHttpHandler is MvcHandler, you can use
| |||||
|
feedback
|
|
You may have found an answer elsewhere, but here goes; In a controller action, you can get to the current RequestContext like so:
| |||
|
feedback
|
|
Don't create a new one. Just extend the existing UrlHelper, just like you'd extend HtmlHelper:
If you must use both HtmlHelper and UrlHelper, pass one of them as a regular (non-"this") argument. | |||
|
feedback
|
|
As mentioned above, just extend the HtmlHelper and the context is exposed in that way. For example:
| |||
|
feedback
|