Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP General (http://www.velocityreviews.com/forums/f65-asp-general.html)
-   -   Re: XMLHttpRequest: POST with Data (http://www.velocityreviews.com/forums/t951403-re-xmlhttprequest-post-with-data.html)

Mike Winter 08-26-2012 01:59 PM

Re: XMLHttpRequest: POST with Data
 
On 23/08/2012 23:00, Gene Wirchenko wrote:
> Dear JavaScripters:
>
> I am trying to pass data back and forth using XMLHttpRequest. I
> have run into a few issues. The first one is the most important.
>
> 1) I can not get POST to work according to various documentation I
> have found on the Web.
>
> Suppposedly, the .open() and .send() would be
> oRequest.open("POST",Url,true);
> oRequest.send(DataToSend);
> but with this, at the server end, the .QueryString value is ""
> regardless of what was supposedly sent.
>
> I have found that using the GET style of
> oRequest.open("POST",Url+"?"+DataToSend,true);
> oRequest.send();
> does work. At least, it appears to.
>
> Am I doing something wrong, or is the documentation wrong?


As has been indicated, you're looking in the wrong place for the data.
The query string (.QueryString) is part of the URL used to locate the
receiving page, hence when you modify the URL in the second example, the
information is available.

The POST method adds data as a "payload" in the request body sent to the
server, and this is accessed differently through the Request.Form
collection[1].

If you're new to authoring server-side and you haven't already, I'd
suggest that you read RFC 2616, Hypertext Transfer Protocol
(HTTP/1.1)[2] to be sure you behave properly (especially when sending
data from the server). You might also want to review Microsoft's
overview of processing user input in ASP[3]. Though it refers to forms
throughout, that's irrelevant in this case: the transmission method (GET
vs. POST) is key.

[snipped encoding question]

Hope that helps,
Mike


Copied and follow-ups set to microsoft.public.inetserver.asp.general
(NB. I don't read this board as I don't use ASP)

[1] <http://msdn.microsoft.com/en-us/library/ms525985(v=vs.90)>
[2] <http://www.w3.org/Protocols/rfc2616/rfc2616.html>
[3] <http://msdn.microsoft.com/en-us/library/ms525182(v=vs.90)>

--
Mike Winter
Replace ".invalid" with ".uk" to reply by e-mail.


All times are GMT. The time now is 10:16 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57