Sechdule Tasks
Friday, July 21, 2006 9:38:22 AM
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
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




