Hi,
I need to run a vb.net or aspx.net file every 10 seconds. The Task Scheduler
in Windows 2003 Server can only do it every 1 minute at the minimum, but I
need it every 10 seconds. Is it possible to write a small program in VB.NET
that would run in the background without using much resources, and request a
vb.net or aspx file every 10 seconds? Could you show me how to write such
code? or give me good directions?
Thank you.
Steve.
Serg - 07 Dec 2004 04:33 GMT
1. create winform app
2. add web browser to your toolbox (unless its already there), and drop it
to your form
3. create timer, set interval to 10 seconds
4. in the timer's event handler function, invoke Navigate2 method on your
browser object.
> Hi,
>
[quoted text clipped - 7 lines]
> Thank you.
> Steve.