usually we can get time by using <% =now %> 3/8/2009 7:23:53 is it possible get less than 1 second? like 3/8/2009 7:23:53:20 thanks regards,
Now.Millisecond will get 1 thousandth of that second, that's if your using asp.net, i'm not sure about Classic ASP. Or to get the complete string: Format(Now, "hh:mm:ss.ff")
If you are using server side javascript then you can use getMilliseconds function to get the milliseconds.
You can use Timer function to get milliseconds; for example if you need to clock how much time elapsed...
I believe this isn't possible in classic ASP. You could do with with SQL tough! therefore u can use the following query : Select DATEPART (ms, getdate()) Good luck!