Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

using asp POST to send xml

Status
Not open for further replies.

aac21

Programmer
Jan 8, 2002
2
GB
Hi guys, i jsut about understand all that i need to do with xml now to get a payment system going on in our asp site.

One thing i need to know is how to use ASP to send xml to another page.
I know how to do it in javascript, its something like:

var xmlHttp = new ActiveXObject("Microsoft.XMLHTTP")
xmlHttp.open("POST", "demo_dom_http.asp", false)
xmlHttp.send(xmlDoc)
document.write(xmlHttp.responseText)

I just need to translate that in asp basically...any ideas?

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top