You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
310 B
Plaintext
10 lines
310 B
Plaintext
6 years ago
|
<!--#include virtual="/include/site-seting.asp" -->
|
||
|
<!--#include virtual="/common/Function.asp" -->
|
||
|
<%
|
||
|
Select Case Request("d")
|
||
|
Case "shortdate"
|
||
|
Response.Write(getengdate(now()))
|
||
|
Case "lngdate"
|
||
|
Response.Write(Left(Replace(GetDateT(), "-", ""), 8)&Right("00"&Replace(Time(), ":", ""), 6))
|
||
|
End Select
|
||
|
%>
|