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
|
show 1 more comment
feedback
|
This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.
|
You could have a meta-refresh for 10 seconds that refresh every 10 seconds. You could put the number in the query string and print it out to the page. | |||||
|
feedback
|
|
Take a look at the Timer
code behind
for more info: http://msdn.microsoft.com/en-us/library/bb398865.aspx | |||||||||||
feedback
|
|
Without javascript (update panel etc) you could reload the page with a thread sleep delay:
And kick things off by loading the page with a querystring: | |||
|
feedback
|
|
Here: test.aspx.cs
test.aspx
As @Mark Byers suggested, you can use meta refresh for this... and it works. Just change So you just need to open | |||
|
feedback
|
<meta http-equiv="refresh" content="10; url=http://example.com/2.html">– Mark Byers Sep 28 '11 at 12:32