Hi there, I wonder if there's anyone wise enough to help me here,
I want to know how to display the time on an ASP page using VBscript, I need this to be dynamic though, so if seconds were diplsyed you could see the time go by, however I only need to display the hrs and mins
quote:I want to know how to display the time on an ASP page using VBscript
vbscript has built-in constants for this. vbshorttime and vblongtime. Take a look at them. If that's not good enough, using the datepart function against them should cover whatever you need.
BTW this will be the server time (in server/page LCID settings). If you want to show client time you have to use JS. If you want a "non-stop changing" time, this is not appropriate.