How do you expand the size of allowable URL size in ASP.NET 4.0?
Read on:
<httpRuntime maxRequestPathLength="260" maxQueryStringLength="2048" />
To allow longer or shorter paths (the portion of the URL that does not include the protocol, server name, and the query string), modify the maxRequestPathLength attribute. To allow longer or shorter query strings, modify the value of the maxQueryStringLength attribute.