程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> ASP中FormatDateTime函數用法詳解

ASP中FormatDateTime函數用法詳解

編輯:關於ASP編程

       FormatDateTime 函數

      返回表達式,此表達式已被格式化為日期或時間。

      FormatDateTime(Date[, NamedFormat])

    參數

    參數

    描述

    date

    Required. Any valid date expression (like Date() or Now())

    必選項。要被格式化的日期表達式。(如Date()或Now())

    format

    Optional. A Format value that specifies the date/time format to use

    可選項。指示所使用的日期/時間格式的數值

      設置

    NamedFormat 參數可以有以下值:

    常數

    描述

    vbGeneralDate

    0

    Display a date in format mm/dd/yy. If the date parameter is Now(), it will also return the time, after the date

    顯示日期和/或時間。如果有日期部分,則將該部分顯示為短日期格式。如果有時間部分,則將該部分顯示為長時間格式。如果都存在,則顯示所有部分。

    vbLongDate

    1

    Display a date using the long date format: weekday, month day, year

    使用計算機區域設置中指定的長日期格式顯示日期

    vbShortDate

    2

    Display a date using the short date format: like the default (mm/dd/yy)

    使用計算機區域設置中指定的短日期格式顯示日期。如默認的(月/日/年)

    vbLongTime

    3

    Display a time using the time format: hh:mm:ss PM/AM

    使用計算機區域設置中指定的時間格式顯示時間

    vbShortTime

    4

    Display a time using the 24-hour format: hh:mm

    使用 24 小時格式 (hh:mm) 顯示時間

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved