Thursday, January 24, 2008

Scheduling to run a page automatically

Const HOST = "url of that .net page"

Const FORMAT = "Raja"

' Create the HTTP object
Set xmlhttp = CreateObject("Microsoft.XMLHTTP")


xmlhttp.open "GET", HOST & "/GetYourTime?format=" & FORMAT, false

' Send the request synchronously

xmlhttp.send()
MsgBox xmlhttp.responseText

No comments: