Timer

  • Thread starter Thread starter Rob
  • Start date Start date
Hi Rob,
If you are refering to the current time of the server that hosts the
page then all you need is a lable & call it "MyTimeLabel" and set to
runat=server then within form_Load put the following

MyTimeLabel.text=Format(now, "hh:mm:ss tt")

that will give you the time when the page was loaded from the server.

If you want the time of the computer that recieves the page then you will
need to forget all the above

And use one of the 2 links below

http://javascript.internet.com/clocks/

http://javascript.internet.com/clocks/basic-clock.html

Chris Wilmot
 
Back
Top