Thanks Kor. I'm looking into xmlhttprequest. It seems like quite a bit of work and there are apparently cross-browser issues to deal with also.
I was wondering if there might be a javascript equivalent to the "method=post" that we all use on our forms; that could be used in a method similar to what I have used in the example above.
I am submitting the page back to the server, so it's not like I need to transmit back to the server in the background.
method is a FORM's attribute which can not be "mimed" nor sent within the address bar. You may pass the pairs name|value within the address bar as if you have submitted them using GET method, but this is possible only because the default submit method is GET, and the processing agent is instructed to take that into consideration. But the POST method is something else: it sends this information to the processing agent within the FORM's body itself or by the request object's argument. By short: either you use a classical submit action or you use the http request/ ActiveX object (with AJAX) in order to perform a POST submit.
Bookmarks