Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi I have an asp.net mvc 3 project implementation where by I post a serialized object to an actionresult as a string. Using the @Ajax.ActionLink helper method in my view. However i receive the following error and it's unable to continue with my request.
The error is as follows. "Error 414 Request URL is too long." How would I go about fixing this? What is the correct way to increase the Request url length in web.config or IIS7.0 or what would be a better way to serialize an object to my ActionResult method?
Posted
Comments
ZurdoDev 17-Feb-12 10:29am    
I know browsers have limitations on the url length, so that may actually be where the error is coming from. You may have to change the way you are doing things.

1 solution

The query string length depends on browser. You cannot increase it from your code.

The only solution AFAIK is to find another alternative approach to achieve the functionality.

Depending upon various browsers here are the limits

IE5.0 IE6.0 IE7.0 -->1024 characters
Opera ---> 4050 characters
NetScape6 ---> 2000 characters
NetScape4 --> 30000 Characters

http://www.boutell.com/newfaq/misc/urllength.html[^]
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900