标题:求教:关于时间日期格式设置问题
只看楼主
哈马拟
Rank: 1
等 级:新手上路
帖 子:270
专家分:0
注 册:2004-7-15
 问题点数:0 回复次数:2 
求教:关于时间日期格式设置问题

我想把日期的格式设置成这样的形式:“02/29/04”

该用哪条语句呢?

搜索更多相关主题的帖子: 格式 时间 语句 
2004-09-05 08:03
griefforyou
Rank: 6Rank: 6
等 级:贵宾
威 望:27
帖 子:3336
专家分:0
注 册:2004-4-15
得分:0 
在VBScript里没有现成的函数

天津网站建设 http://www./
2004-09-05 13:39
griefforyou
Rank: 6Rank: 6
等 级:贵宾
威 望:27
帖 子:3336
专家分:0
注 册:2004-4-15
得分:0 

我帮你写了个函数来格式化日期

<% '//////////////////////////////////////////////////////////////////////////// '格式化时间字符串函数,Written by griefforyou '参数:varDate为时间字符串 '参数:Format参数为格式字符串,格式字符串中可以包含yyyy(四位数年份),yy(两位数年份) 'MM(长格式月份),M(短格式月份),dd(长格式日期),d(短格式日期) '//////////////////////////////////////////////////////////////////////////// Private Function FormatDate(varDate ,Format) Dim year ,shortyear Dim month , shortmonth Dim day , shortday Dim temp

If Not IsDate(varDate) Then Exit Function If Format="" then Format= "MM/dd/yy"

year = DatePart("yyyy", varDate) shortyear = Right(year, 2) shortmonth = DatePart("M", varDate) If Len(shortmonth) = 2 Then month = shortmonth Else month = "0" & shortmonth End If shortday = DatePart("d", varDate) If Len(shortday) = 2 Then day = shortday Else day = "0" & shortday End If temp = Replace(Format, "yyyy", year) temp = Replace(temp, "yy", shortyear) temp = Replace(temp, "MM", month) temp = Replace(temp, "M", shortmonth) temp = Replace(temp, "dd", day) temp = Replace(temp, "d", shortday) FormatDate = temp End Function

%> 函数使用示例:<br> Now 当前日期为 <%=Now%><br> FormatDate(Now,"") 返回值为 "<%=FormatDate(Now,"")%>" (默认Format参数为"MM/dd/yy")<br> FormatDate(Now,"MM/dd/yy") 返回值为 "<%=FormatDate(Now,"MM/dd/yy")%>" <br> FormatDate(Now,"M/d/yy") 返回值为 "<%=FormatDate(Now,"M/d/yy")%>" <br> FormatDate(Now,"yyyy-MM-dd") 返回值为 "<%=FormatDate(Now,"yyyy-MM-dd")%>"<br> FormatDate(Now,"MM/dd/yyyy") 返回值为 "<%=FormatDate(Now,"MM/dd/yyyy")%>"<br> FormatDate(Now,"yyyy/M/d") 返回值为 "<%=FormatDate(Now,"yyyy/M/d")%>"<br> FormatDate(Now,"yyyy-M-d") 返回值为 "<%=FormatDate(Now,"yyyy-M-d")%>"<br>

输出结果如下:

[此贴子已经被作者于2004-09-05 14:18:04编辑过]


天津网站建设 http://www./
2004-09-05 14:14



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-5017-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.053213 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved