I'm an experienced web/CGI programmer, but new to ajax.
I'd like to review some examples of how to post data from a
form to server using AJAX. I have already created some examples
successfully that read data from a server to a form using
'get' as the first argument to the open() method
Also:
I have a client who wants to post some very large forms using
AJAX, but I'm concerned about the limits of the size of the
argument to the send() method of an ajax object.
I presume that I will need to write javascript code that 'walks'
thru form elements and concatenates a string in the
follow format var1=val1&var2= val2...... escaping as necessary.
My concern is that the form may have as many as 600 fields!
I'd welcome both simple examples to get started and comments
on whether there is a limit on the size of the send() method argument string.
Thanks
Tim
I'd like to review some examples of how to post data from a
form to server using AJAX. I have already created some examples
successfully that read data from a server to a form using
'get' as the first argument to the open() method
Also:
I have a client who wants to post some very large forms using
AJAX, but I'm concerned about the limits of the size of the
argument to the send() method of an ajax object.
I presume that I will need to write javascript code that 'walks'
thru form elements and concatenates a string in the
follow format var1=val1&var2= val2...... escaping as necessary.
My concern is that the form may have as many as 600 fields!
I'd welcome both simple examples to get started and comments
on whether there is a limit on the size of the send() method argument string.
Thanks
Tim
Comment