Im working in a .Net environment, and on my aspx page I would like to add a running digital clock w//seconds , but I need it to use the server side time. Whats the best approach for this?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Have you considered the AJAX UpdatePanel?
MSDN: Tutorial: How to refresh an UpdatePanel control at a timed interval
It might be overkill to update every second. Maybe implement it so that it polls the server to check the server and the client times are still sync’d and if not, update the client page?