📄 ymd.inc
字号:
<%
Function YMD(MyDate)
on error resume next
strYear=Year(MyDate)
strMonth=Month(MyDate)
strDay=Day(MyDate)
if len(strMonth)=1 then strMonth="0" & strMonth end if
if len(strDay)=1 then strDay="0" & strDay end if
YMD=strYear & "-" &strMonth & "-" &strDay
If Err.description <> "" Then
YMD=" "
end if
end function
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -