ASP讀取日期單日期自動補零函數代碼

來源:互聯網
上載者:User

複製代碼 代碼如下:public function fillzero(l1)
if len(l1)=1 then
fillzero="0"&l1
else
fillzero=l1
end if
end function

用法樣本: 複製代碼 代碼如下:response year(now)&month(now)&day(now) 結果:201116
response year(now)&fillzero(month(now))&fillzero(day(now)) 顯示結果:20110106

如何控制長日期格式和短日期格式的顯示:

Short Date:FORMATDATETIME(DATE,vbShortDate)
Long Date:FORMATDATETIME(DATE,vbLongDate)

當根據英國(美國)地區設定顯示日期時,日期顯示為如下的格式:

Short Date:7/9/97
Long Date:Wednesday,July 09,1997

注意:短日期格式的顯示與不做任何格式化時完全相同。在預設情況下,日期以短日期格式顯示。

如何用FORMATDATETIME()函數操作時間:

Short Time:FORMATDATETIME(TIME,vbShortTime)
Long Time:FORMATDATETIME(TIME,vbLongTime)

當以英國(美國)地區設定顯示時間時,時間的格式如下:

Short Time:03:20
Long Time:3:20:08 AM 複製代碼 代碼如下:<%
function FillZero(str)
ttt=str
if len(str)=1 then
ttt="0" & str
end if
FillZero=ttt
end function
'轉化日期,將 一位補上零 2003-1-2 --> 2003-01-02
function ConvertDate(tDate)
ttt=tDate
if isdate(tDate) then
ttt=year(tDate) & "-" & FillZero(month(tDate)) & "-" & FillZero(day(tDate))
end if
ConvertDate=ttt
end function
'輸入一個日期時間串,轉換成年四位,其他兩位的新的日期時間串
function ConvertDateTime(tDateTime)
ttt=tDateTime
if isdate(tDateTime) then
ttt=year(tDateTime) & "-" & FillZero(month(tDateTime)) & "-" & FillZero(day(tDateTime)) & " " & FillZero(cstr(hour(tDateTime))) & ":" & FillZero(cstr(minute(tDateTime))) & ":" & FillZero(cstr(second(tDateTime)))
end if
ConvertDateTime=ttt
end function
%>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.