Click here to Skip to main content
15,890,579 members
Please Sign up or sign in to vote.
1.75/5 (4 votes)
See more:
Hi my all my help-full or all my visitor friends.

I need your help.

Tell me how can I set timer control in my c# [ASP.Net] project?!

And most important is when I refresh my run-time page. Like Count Down..

How can I do this?

Please please help me.
Posted
Updated 26-Mar-12 7:42am
v5

 
Share this answer
 
Comments
Shahin Khorshidnia 24-Mar-12 16:44pm    
+5
Sergey Alexandrovich Kryukov 24-Mar-12 18:43pm    
My 5.
OP must have been banned by Google, unfortunately. :-)
--SA
[no name] 24-Mar-12 18:44pm    
Thanks. Kind of like that other guy with the excel.
RAHOOL SONI 26-Mar-12 13:38pm    
that link not work ...
please help me friends..
Nelek 26-Mar-12 19:41pm    
The link is working for me. If it is not working for you, then go to www.ajaxtutorials.com and navigate a bit until you get the sections described there :)
Maybe this will help:

C#
public Timer t = new Timer(3000);

public Shell()
{
    InitializeComponent();
    t.Elapsed += TOnElapsed;
}

private void TOnElapsed(object sender, ElapsedEventArgs elapsedEventArgs)
{
    throw new NotImplementedException();
}
 
Share this answer
 
Comments
RAHOOL SONI 27-Mar-12 11:18am    
thanks.. for helping me..
but its not work..
:(
have you any other way...??

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900