Time 12:14:28 PM <%=Time%> Long Time 12:14:28 PM <%=FormatDateTime(Now(),vbLongTime)%> Short Time 12:14 <%=FormatDateTime(Now(),vbShortTime)%> Showing The Hour (24) 12 <%=Hour(Now)%> Showing The Hour (12) 0 <%=(DatePart("h",Now())-12)%> Showing The Minute (Single Digit) 14 <%=DatePart("n",Now())%> Showing The Second (Single Digit) 28 <%=DatePart("s",Now())%> Showing The Minute (Double Digit) 14 If the minute is 0 - 9 the above code shows only a single digit. Heres a simple work around for this: <% If Len(DatePart("n",Now()))=1 Then n = 0 & DatePart("n",Now()) Else n = DatePart("n",Now()) End If %> <%=n%> Showing The Second (Double Digit) 28 If the second is 0 - 9 the above code shows only a single digit. Heres a simple work around for this: <% If Len(DatePart("s",Now()))=1 Then s = 0 & DatePart("s",Now()) Else s = DatePart("s",Now()) End If %> <%=s%> Glueing The Hour, Minute And Second Together 12:14:28 This was done using the double digit examples above. So the line to code this would look like so: <% If Len(DatePart("n",Now()))=1 Then n = 0 & DatePart("n",Now()) Else n = DatePart("n",Now()) End If If Len(DatePart("s",Now()))=1 Then s = 0 & DatePart("s",Now()) Else s = DatePart("s",Now()) End If %> <%=Hour(Now) & ":" & n & ":" & s %>