程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> ASP分頁和日期格式化為RFC822格式的辦法

ASP分頁和日期格式化為RFC822格式的辦法

編輯:關於ASP編程

  1. 計算分頁,嘿嘿一次搞定不用判斷
    intNumPage = Abs(Int(-(intNumRecord/intPerPage)))
  2. 將日期格式化為RFC822格式,以前的方法麻煩哦,看這個簡單的
    Function DateToRFC822(byVal dtaVal)
        Dim strCurLocale : strCurLocale = GetLocale()
        SetLocale("en-gb")
        dtaVal = CDate(dtaVal)
        DateToRFC822 = WeekdayName(Weekday(dtaVal),True)&","&_
                       Right("0"&Day(dtaVal),2)&" "&_
                       MonthName(Month(dtaVal),True)&" "&_
                       Year(dtaVal)&" "&_
                       Right("0"&Hour(dtaVal),2)&":"&_
                       Right("0"&Minute(dtaVal),2)&":"& _
                       Right("0"&Second(dtaVal),2)&" "& _
                       " +0800"
        SetLocale(strCurLocale)
    End Function
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved