digital clock
how can make a digital clock in c# with ajax
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Abhay ShankerPosted Jan 14, 2014, 2:13 AM
OnTick="Timer1_Tick"
Interval="1000">
runat="server">
________________________________________
Code Behind
protected void Timer1_Tick(object sender, EventArgs e)
{
lblTimer.Text = DateTime.Now.ToLongTimeString();
}
Devinder KumarPosted Jan 14, 2014, 1:29 AM
You can use this code to show digital clock in asp.net c# like this....
On design page use this one...
On code file put this one...........