Forum Moderators: open

Message Too Old, No Replies

Hitting a remote URL without transferring?

I need to continue excuting the script

         

beniro

9:15 pm on Dec 4, 2006 (gmt 0)

10+ Year Member



How would you go about hitting a remote URL while continuing to execute the asp script?

I need to loop through a rs, and for each one, hit a remote URL with a querystring.

Any help would be greatly appreciated. Thanks.

beniro

10:00 pm on Dec 6, 2006 (gmt 0)

10+ Year Member



I ended up using the following method:


Dim url
url = "http://www.urlthatyouwanttohit.com"
xmlhttp.open "GET", url, false

That's neat.