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.

Re: I need to run a vb.net or aspx.net file every 10 seconds. by W

W
Mon Dec 06 21:37:35 CST 2004

Create a Windows Service and use the System.Timers.Timer class.... it's
built precisely for this task

--
W.G. Ryan MVP (Windows Embedded)

TiBA Solutions
www.tibasolutions.com | www.devbuzz.com | www.knowdotnet.com
"Steve Jacobs" <steve00932@yahoo.com> wrote in message
news:6tmdndW88LKkhSjcRVn-rg@comcast.com...
> 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.
>
>



Re: I need to run a vb.net or aspx.net file every 10 seconds. by Sahil

Sahil
Mon Dec 06 22:35:40 CST 2004

Here's a nifty trick you might find handy in developing your windows
service --

http://dotnetjunkies.com/WebLog/sahilmalik/archive/2004/12/06/35295.aspx


- Sahil Malik
http://dotnetjunkies.com/weblog/sahilmalik


"W.G. Ryan eMVP" <WilliamRyan@NoSpam.gmail.com> wrote in message
news:%23Nq6m2A3EHA.1296@TK2MSFTNGP10.phx.gbl...
> Create a Windows Service and use the System.Timers.Timer class.... it's
> built precisely for this task
>
> --
> W.G. Ryan MVP (Windows Embedded)
>
> TiBA Solutions
> www.tibasolutions.com | www.devbuzz.com | www.knowdotnet.com
> "Steve Jacobs" <steve00932@yahoo.com> wrote in message
> news:6tmdndW88LKkhSjcRVn-rg@comcast.com...
>> 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.
>>
>>
>
>