Forcing ActionLinks to be rendered as lowercase - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T09:22:30Zhttp://stackoverflow.com/feeds/question/495006http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/495006/forcing-actionlinks-to-be-rendered-as-lowercase3Forcing ActionLinks to be rendered as lowercaseLuke Smith2009-01-30T09:59:31Z2009-01-31T21:04:32Z
<p>Without creating my own ActionLink HtmlHelper is there a way to force any ActionLinks to be rendered lowercase?</p>
<p><strong>Update:</strong>
Check out the following links for extending the RouteCollection to add LowecaseRoutes
<a href="http://www.makiwa.com/index.php/2008/05/31/lowercase-mvc-route-urls/" rel="nofollow">http://www.makiwa.com/index.php/2008/05/31/lowercase-mvc-route-urls/</a>
<a href="http://goneale.wordpress.com/2008/12/19/lowercase-route-urls-in-aspnet-mvc/" rel="nofollow">http://goneale.wordpress.com/2008/12/19/lowercase-route-urls-in-aspnet-mvc/</a></p>
http://stackoverflow.com/questions/495006/forcing-actionlinks-to-be-rendered-as-lowercase/495332#4953326Answer by Thomas J for Forcing ActionLinks to be rendered as lowercaseThomas J2009-01-30T12:17:39Z2009-01-30T12:17:39Z<p>The best way to handle this, is at the routing level. Force all route paths to be lowercase, and it will properly propagate to your action links etc.</p>
<p>The way I've solved this, is to create a new route class that inherits <code>Route</code> and simply overrides the <code>GetVirtualPath</code> method;</p>
<pre><code>public override VirtualPathData GetVirtualPath(RequestContext requestContext, RouteValueDictionary values)
{
var virtualPath = base.GetVirtualPath(requestContext, values);
if (virtualPath != null)
virtualPath.VirtualPath = virtualPath.VirtualPath.ToLowerInvariant();
return virtualPath;
}
</code></pre>
<p>I've also created a few extension methods for <code>RouteCollection</code> to make it easy to use this new route class. </p>