Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / ASP.NET

Set your maxUrlLength in ASP.NET MVC

0.00/5 (No votes)
18 Feb 2012CPOL 23.5K  
If you want to increase or decrease your maxUrlLength in ASP.NET to limit the max URL for your site, you can do the following:

In your main Web.Config file under the system.web tag, add a node called httpRuntime and add a property called maxUrlLength, e.g.;
HTML
<httpRuntime maxUrlLength="22" />

Note: 22 is just an example number.
For more options, visit the link below:
http://msdn.microsoft.com/en-us/library/system.web.configuration.httpruntimesection.maxurllength.aspx[^]

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)