Hi,
I have been working on a website that utilizes this XMLHTTP object a lot. Examples look pretty easy, except the one with "POST" method. "GET" works fine, but the following example doesn't work:
xml.Open "POST", " False
xml.Send "param1=value1¶m2=value2"
Response.Write xml.responseText
Second line doesn't post the values to the address. To make sure I put request.form("param1"
and request.form("param2"
to that address, but they were all empty.
Any ideas?
I have been working on a website that utilizes this XMLHTTP object a lot. Examples look pretty easy, except the one with "POST" method. "GET" works fine, but the following example doesn't work:
xml.Open "POST", " False
xml.Send "param1=value1¶m2=value2"
Response.Write xml.responseText
Second line doesn't post the values to the address. To make sure I put request.form("param1"
Any ideas?