ASP.NET MVC, Url Routing: Maximum Path (URL) Length

I ended up using the following in the web.config to solve this problem using Mvc2 and .Net Framework 4.0

<httpRuntime maxUrlLength="1000" relaxedUrlToFileSystemMapping="true" />

Leave a Comment