My Opera is closing 3rd of March

In my Thoughts

"Dream is Not that What you see in Sleep. Dream is the thing Which Does Not Allow You to Sleep."

Subscribe to RSS feed

Sechdule Tasks

Hi,

sechdule tasks, To keep .aspx page in sechdule tasks you can use vbscript, and call your .aspx page in that.




call task()

sub task()
dim objxmlhttp
dim url

set objxmlhttp = createobject("Msxml2.ServerXMLHTTP")

url = "http://merasathi.com/matchalerts/Webform1.aspx"

objxmlhttp.open "GET",url,false

objxmlhttp.send()

set objxmlhttp = nothing

end sub