Tagged Questions

5
votes
4answers
1k views

How to make a countdown timer in asp.net web application(C#)?

I am Creating Timed online test in C# asp.net.I have created it using the local machine time. But in the case of Database disconnection or system hang, The countdown timer must start from the time at ...
3
votes
2answers
2k views

Countdown timer in asp.net

I am using asp.net 3.5 with C#. I want to create a countdown timer and my requirement is like this: Countdown end date: June 16 2010 So, till June 16 comes my timer will show the remeaning time. ...
2
votes
4answers
420 views

C# countdown timer

I'm trying to make a countdown using C# and show the time in format: hour:minutes:seconds I've tried this: var minutes = 3; //countdown time var start = DateTime.Now; var end = ...
1
vote
1answer
197 views

Countdown timer increase on interaction?

I have a form that I want to close after 5 seconds if no mouse interaction is done but if any mouse interaction is done I want it to close countdown + 5 seconds and each interaction would increase it ...
0
votes
4answers
516 views

Timer countdown sql, asp.net c#, javascript

i have the next javascript code: <script language="JavaScript"> TargetDate = "12/31/2020 5:00 AM"; BackColor = "palegreen"; ForeColor = "navy"; CountActive = true; CountStepper = -1; ...
0
votes
2answers
277 views

Timer countdown sql, asp.net c#

i have table with the desgin: ========== id (int, key) itemName (nvarchar max) offerClosing (datetime) at the offerclosing i'm enter the date and time of the end of the offer to the item... ...
0
votes
2answers
564 views

jquery.countdown in asp.net

Does anyone have experience in using jquery.countdown in asp.net? In my code behind, I set a date like this public string datostreng; protected void Page_Load(object sender, EventArgs e) { ...
0
votes
2answers
324 views

How to implement countdown timer class in TDD?

I'm learning to do TDD in practice in small project. I want to create a countdown timer class, how to implement it in TDD(Red, Green, Refactor), and it has the delegate callback as well.
0
votes
1answer
2k views

C# - Countdown Timer Using NumericUpDown as Interval

I'm sure this has been asked before, but I cannot seem to find a solution that works. I have a NumericUpDown on my form and a label along with a timer and a button. I want the timer to start when ...
-1
votes
4answers
124 views

Count down numbers [closed]

Using C# (no Javascript) I want to display the numbers 10 to 1 one after the other. Each number should be displayed for 10 seconds. Can anyone help in this. Regards, Vivek