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
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 ..