Forcing ActionLinks to be rendered as lowercase - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T09:22:30Z http://stackoverflow.com/feeds/question/495006 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/495006/forcing-actionlinks-to-be-rendered-as-lowercase 3 Forcing ActionLinks to be rendered as lowercase Luke Smith 2009-01-30T09:59:31Z 2009-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#495332 6 Answer by Thomas J for Forcing ActionLinks to be rendered as lowercase Thomas J 2009-01-30T12:17:39Z 2009-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>