running webpage automatically via code

  • Thread starter Thread starter JJ
  • Start date Start date
J

JJ

I am trying to setup a window tasks (or other better method) that runs aspx
page once a day. How do I do this?
Thanks
 
Can you provide the complete batch file? I am not that familiar with batch
processes.

I recommend you to create a file sched.vbs

Set objXMLHTTP = CreateObject("MSXML2.XMLHTTP")
objXMLHTTP.Open "GET", "http://mysite", False
objXMLHTTP.Send
Set objXMLHTTP = Nothing

and add this file into Windows sheduler
 
Back
Top