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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

xmlhttp post to an asp page...

Status
Not open for further replies.

mgreer

Programmer
Jan 9, 2001
45
0
0
US
I'm trying to post data from a vb form to an asp page using xmlhttp40. My problem is that the asp page expects the data through request objects.. not in the querystring. Does anyone know how to post data from a vb app to an asp page using Request (not Querystring)?

Thanks.
 
QueryString is part of the Request Object. When an ASP page is told to get a value from the Request object without specifying .Form or .QueryString or .Cookies it simply tries each of those collections until it finds the data it was told to look for.
One possibility is the XMLHTTP object that can send and receive XMLHTTP requests. There are a few articles on it at MSDN and several other major sites, as well as some small examples posted on this board and the ASP board.
-Tarwn "Customer Support is an art not a service" - marketing saying
"So are most other forms of torture" - programmers response
(The Wiz Biz - Rick Cook)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top