%@LANGUAGE="VBSCRIPT"%> <% MyDate = Date MyTime = Time mm = Month(MyDate) if mm < 10 then mm = "0" & mm end if dd = Day(MyDate) if dd < 10 then dd = "0" & dd end if yy = Right(Year(MyDate),2) hh = Hour(MyTime) if hh < 10 then hh = "0" & hh end if nn = Minute(MyTime) if nn < 10 then nn = "0" & nn end if ss = Second(MyTime) if ss < 10 then ss = "0" & ss end if session("ts") = mm & dd & yy & hh & nn & ss session("today") = mm & "/" & dd & "/" & yy %>
|
|
Today is <%= Session("today") %>
|
|
or
|
|
||||||||||
|
|||||||||||
|
|