T
TJO
I am executing the following JavaScript to initiation a post to another
page on my site. I need to retreive the string data being sent in the
..send() method. However, I cannot locate the string anywhere? I am
inspecting the Request object in MyPostPage.aspx is this correct?
Where else should I be looking to get a handle on the 'foo=bar' string?
Thank you in advance.
http_request = new XMLHttpRequest();
http_request.setRequestHeader = 'Content-Type',
'application/x-www-form-urlencoded';
http_request.overrideMimeType('text/xml');
http_request.onreadystatechange = ServerResponseHandler;
http_request.open('POST', 'http://localhost/MyPostPage.aspx', true);
http_request.send('foo=bar')
page on my site. I need to retreive the string data being sent in the
..send() method. However, I cannot locate the string anywhere? I am
inspecting the Request object in MyPostPage.aspx is this correct?
Where else should I be looking to get a handle on the 'foo=bar' string?
Thank you in advance.
http_request = new XMLHttpRequest();
http_request.setRequestHeader = 'Content-Type',
'application/x-www-form-urlencoded';
http_request.overrideMimeType('text/xml');
http_request.onreadystatechange = ServerResponseHandler;
http_request.open('POST', 'http://localhost/MyPostPage.aspx', true);
http_request.send('foo=bar')