miércoles, 10 de abril de 2013

The length of the URL for this request exceeds the configured maxUrlLength value. ASP.C#

Solución:

Agregar la siguiente etiqueta al archivo web.config

<configuration>
     
<system.web>
           
<httpRuntime maxUrlLength="500" />
     
</system.web>
</configuration>