熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

關於asp中轉化時間為數字、字符串

2022-06-13   來源: .NET編程 

  asp中我想取時間如 ::中數字但用cstr函數或別的轉化後都是請問怎樣才能使其變為?也就是時間中數字小於時也顯示兩位

  <%

  str=now

  str=replace(str )

  str=replace(str)

  str=replace(str:)

  str=replace(str上午)

  str=replace(str下午)

  responsewrite str

  %>

  ***************************************************

  函 數 名:getYYYYMMDDHHIISS

  作    用:根據給定的日期和時間型數據將其轉換為YYYYMMDDHHIISS字符串格式

  參    數:d 日期型數據t 時間型數據

  返 回 值:轉換後的字符串

  ***************************************************

  Function GetYYYYMMDDHHIISS(dt)

  YYYY=Year(d)

  MM=Month(d)

  DD=Day(d)

  HH=Hour(t)

  II=Minute(t)

  SS=Second(t)

  If Len(YYYY) = then

  YYYY= & YYYY

  End If

  If Len(MM)= then

  MM= & MM

  End If

  If Len(DD)= then

  DD= & DD

  End If

  If Len(HH)= then

  HH= & HH

  End If

  If Len(II)= then

  II= & II

  End If

  If Len(SS)= then

  SS= & SS

  End If

  GetYYYYMMDDHHIISS=YYYY & MM & DD & HH & II & SS

  End Function


From:http://tw.wingwit.com/Article/program/net/201311/13501.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.