views:

61

answers:

2

What is the maximum allowed size of a URL for a GET request in IE8? I have a url that is ~7700 characters that works on all browsers except IE.

+6  A: 

2,083

JacobM
A: 

If your url is 7700 characters long you're doing it wrong. Use a post instead.

ZippyV
GET requests have different semantic meaning than POST. If you're building a RESTful service that supports complex queries, long GET URLs may be difficult to avoid.
Michael E
In this case I am maintaining existing code.
Benju
What kind of data are you submitting and what might be the reason (of the original programmer) for using GET instead of POST?
ZippyV