DoDateTime 显示时间格式求助!! ASP
发布网友
发布时间:2024-07-03 04:06
我来回答
共2个回答
热心网友
时间:2024-08-12 02:02
DoDateTime不是内置的默认函数。所以我不知道你那个是什么。
按照你段代码,可以判断
Torrent.Fields.Item("Torrent_Time").Value 是一个完整日期
比如 “2008-12-31”
你可以用year(),month(),day(),weekday()这几个内置函数。
只显示月份就:<%=month(Torrent.Fields.Item("Torrent_Time").Value)%>
只显示几号就:<%=day(Torrent.Fields.Item("Torrent_Time").Value )%>
自己还可以组合一下:<%=month(Torrent.Fields.Item("Torrent_Time").Value)&"月"&day(Torrent.Fields.Item("Torrent_Time").Value &"号"%>
这样就能获得 10月12号 这样的显示
(代码&可能会被zhidao过滤出一个斜杠)
热心网友
时间:2024-08-12 01:59
<%
Dim Month,Day
Month=Month(Now())
Day=Day(Now())
If Len(Month)=1 Then Month="0"&Month
If Day(Month)=1 Then Day="0"&Day
Response.Write Month&"月"&Day&"号"
%>