Time 7:49:46 AM <%=Time%> Long Time 7:49:46 AM <%=FormatDateTime(Now(),vbLongTime)%> Short Time 07:49 <%=FormatDateTime(Now(),vbShortTime)%> Showing The Hour (24) 7 <%=Hour(Now)%> Showing The Hour (12) -5 <%=(DatePart("h",Now())-12)%> Showing The Minute (Single Digit) 49 <%=DatePart("n",Now())%> Showing The Second (Single Digit) 46 <%=DatePart("s",Now())%> Showing The Minute (Double Digit) 49 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) 46 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 7:49:46 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 %>