My goal:
I need to cause my web application to check for updates on a remote website twice a week around a certain time. The routine would download the xml content of a given page, parse it, and retrieve information for use on my website. So I need to trigger the routine which does this on a scheduled interval.
It seems to me I need a timer that is initiated from the global.asa. I really don't care if it runs every 5 minutes or so (that's not a lot of server load) and checks the time, and if the day of the week and time are appropriate, the routine should get triggered and the remote website can be checked for the updated information I need.
I have seen "system.tim e" available for the .NET folks, but I'm trying to steer clear of .NET for a zillion reasons. Suffice it to say I'm using the old ASP and intend to keep it that way. Any ideas how I can accomplish what I need?
Thanks all.
I need to cause my web application to check for updates on a remote website twice a week around a certain time. The routine would download the xml content of a given page, parse it, and retrieve information for use on my website. So I need to trigger the routine which does this on a scheduled interval.
It seems to me I need a timer that is initiated from the global.asa. I really don't care if it runs every 5 minutes or so (that's not a lot of server load) and checks the time, and if the day of the week and time are appropriate, the routine should get triggered and the remote website can be checked for the updated information I need.
I have seen "system.tim e" available for the .NET folks, but I'm trying to steer clear of .NET for a zillion reasons. Suffice it to say I'm using the old ASP and intend to keep it that way. Any ideas how I can accomplish what I need?
Thanks all.
Comment