|
-
Sep 25th, 2007, 08:44 PM
#1
Post form automatically and return the response
ok what i want to do is this:
i have an asp page and i want it to post data to another page outside my site and return the web page source of the response to an asp variable
i do not want any direct interaction with the user
how is this possible to do?
thanks in advance
Kris Bennett
-
Sep 26th, 2007, 07:34 AM
#2
PowerPoster
Re: Post form automatically and return the response
You will need to use something like:
Set objHttp = CreateObject("Microsoft.XMLHTTP")
objHttp.Open "GET", Src, False
...
or Post, depending on whether it is a POST form or Get etc ..
You will need to know all the HTML ..
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|