日期:2010-11-09 09:40:00 来源:本站整理
asp 格局化时间函数[网站编程]
本文“asp 格局化时间函数[网站编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
本款函数可以按照用户给定的时间日期举行年代日,时分秒等,只要用户给定差别的style参数便可以显示差别气势的时间日期.
- function formattime(testtime,style)
- dim n,y,r,s,f,m
- n = year(testtime)
- y = month(testtime)
- r = day(testtime)
- s = hour(testtime)
- f = minute(testtime)
- m = second(testtime)
- if len(n) = 2 then n = "20" & n
- if len(y) = 1 then y = "0" & y
- if len(r) = 1 then r = "0" & r
- if len(s) = 1 then s = "0" & s
- if len(f) = 1 then f = "0" & f
- if len(m) = 1 then m = "0" & m
- nn=right(n,2)
- if style = 1 then
- formattime = "<font color=""#ff0000"">"& n &"</font>年<font color=""#ff0000"">"& y &"</font>月<font color=""#ff0000"">"& r &"</font>日<font color=""#ff0000"">"& s &"</font>时"
- elseif style = 2 then
- formattime = r &"日 "& s & ":" & f & ":" & m
- elseif style = 3 then
- formattime = n &"年"& y &"月"& r &"日"
- elseif style = 4 then
- formattime = n & "-" & y & "-" & r & " " & s & ":" & f
- elseif style = 5 then
- formattime = y &"-"& r &" " & s & ":" & f
- elseif style = 6 then
- formattime = n &"年"& y &"月"& r &"日" & s &":"& f
- elseif style = 7 then
- formattime = n & y & r & s & f & m
- elseif style = 8 then
- formattime = n & "-" & y & "-" & r
- elseif style = 9 then
- formattime = n & "/" & y & "/" & r
- end if
- end function
以上是“asp 格局化时间函数[网站编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |
- ·上一篇文章:asp获得文件大小
- ·下一篇文章:二款简单asp分页实例
- ·中查找“asp 格局化时间函数”更多相关内容
- ·中查找“asp 格局化时间函数”更多相关内容
评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论