| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 826 人关注过本帖
标题:求教:关于时间日期格式设置问题
只看楼主 加入收藏
哈马拟
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
快速回复:求教:关于时间日期格式设置问题
数据加载中...
 
   



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

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