You can create scheduled tasks for .aspx files by scheduling your .aspx files to run using iexplore.exe:
Start –> Control panel –> Scheduled Tasks –> Add scheduled task
Then, browse for your .aspx file and select it.
After creating scheduled task, go through Start –> Control panel –> Scheduled Tasks and select the properties of the newly created task.
Suppose, you want to schedule http://192.168.1.0/ScheduleMe.aspx, then the “run” field should looks like:
“C:\Program Files\Internet Explorer\IExplore.exe” http://192.168.1.0/ScheduleMe.aspx
By default, IExplore.exe opens a browser each time it runs. In order to close the browser you may have to schedule another task. Here is a very simple task to close the IE browser:
taskkill /IM iexplore.exe
Open your notepad and save the file as .bat (say IEkill.bat) after entering the line above. Schedule this to run after 5 or 10 minutes.