What are extensibility points of URL generation in ASP.NET MVC?
- Routes - virtual path depends on it
- ???
Addendum 1
Particularily, I need to control not only path part of URL but the host also. And I'd like to embed my generation logics into MVC Framework so that any call to standard Html.ActionLink
method would involve my logics. It would be perfect. However, investigating MVC sources I'm desperate to achieve my goal with an easy way.