hourms.inc

来自「一个软件工程的软件质量web跟踪管理系统」· INC 代码 · 共 14 行

INC
14
字号
<%

Function FormatT()
    MyDate=now()
    strSecond=Day(MyDate)
    strHour=hour(Mydate)
    strMinute=Minute(MyDate)
        if len(strSecond)=1 then strSecond="0" & strSecond end if
        if len(strHour)=1 then strHour="0" & strHour end if
        if len(strMinute)=1 then strMinute="0" & strMinute end if
        FormatT=strHour & strMinute & strSecond
end function

%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?