Invoke method after a regular time interval

H

Hemant

Hi,

I am working asp.net 2005 . I want to save my data into database after every
2 minutes till my application is running. For this I have to call save
method after every 2 min so please help to solve this.

Thanks ,
Hemant
 
A

Andy O'Neill

Hemant said:
Hi,

I am working asp.net 2005 . I want to save my data into database after
every 2 minutes till my application is running. For this I have to call
save method after every 2 min so please help to solve this.

Thanks ,
Hemant
In an asp.net app, you realise the code runs on the server - right?

I can't think of any way to do that with javascript.
So I reckon you'd need to look at silverlight or activex.
I like silverlight..
 
M

Mark Rae [MVP]

I am working asp.net 2005 . I want to save my data into database after
every 2 minutes till my application is running. For this I have to call
save method after every 2 min so please help to solve this.

What "data" are you talking about?
 
M

Mr. Arnold

Hemant said:
Hi,

I am working asp.net 2005 . I want to save my data into database after every
2 minutes till my application is running. For this I have to call save
method after every 2 min so please help to solve this.

You'll have to use Ajax and make a call to a function from client side
javascript to get to a method on the codebhind file.

<http://www.codeproject.com/KB/aspnet/CallCodeBehindByJS.aspx>

You set the timer and call the function. The function called will be
going back to the codebehind file to call the Save() method.

<http://www.howtocreate.co.uk/tutorials/javascript/timers>
<http://www.pageresource.com/jscript/jtimeout.htm>

I don't know if you can set the timer in millseconds for 5 minutes, let
me know.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,019
Latest member
RoxannaSta

Latest Threads

Top