Timer
In my label control display text automatically change every 2 seconds...How
Label1.Text="First";
this is first statement.
After that display next value based on timing. Timing interval 2 seconds
Label1.Text="Second"
after 2 seconds display following statement..
Label1.Text="Third"
after 2 seconds display following statement..
Label1.Text="Four"
after 2 seconds display following statement..
Label1.Text="Five"
Then again go to first.
after 2 seconds display following statement..
Label1.Text="First"..
..........
............
This concept using page load event......
How help me
I need C# Coding with ASP.Net..
Any Concept.......Timer or AJAX any way.....
|