Links

Lists

Latest Updates

Ruby On Rails List
Python list
Advanced Java
The JavaScript List
Apache Users
Full Disclosure
Linux Security

Search the archives!


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Javascript] Limitations AJAX get


  • From: wdlists at triche-osborne.com (Triche Osborne)
  • Subject: [Javascript] Limitations AJAX get
  • Date: Sun Aug 27 06:04:27 2006

Peter Lauri wrote:
> Hi,
> 
> Are there any limitations in how much data one could send using an
> XMLHttpRequest with the get method?
> 
> /Peter
> 

Since there are limitations on how much GET can handle, yes. If the 
request is over 255 bytes, it should be submitted with POST. (See Google 
'GET size limit' or 'GET method 255 bytes'.)

Triche