asp日期函数:如何将2009-2-19日期转换为2-19?
100分悬赏,请高手指教!<body><%sql="selecttop8*fromcontorderbyiddesc"setrc=server.CreateObject(...
100分悬赏,请高手指教!
<body>
<%
sql="select top 8 * from cont order by id desc"
set rc=server.CreateObject("adodb.recordset")
rc.open sql,conn,1,1
%>
<table border="1">
<% Do while not rc.eof %><tr>
<td width="416"><span class="STYLE1">·</span><a href="list.asp?id=<%=rc("id") %>"><%= rc("title") %></a></td>
<td width="107"><%= rc("shijian") %></td>
</tr>
<%rc.movenext
Loop
%></table>
<a href="add.asp"><br>
添加 </a>
<p></p>
</body>
</html>
注:此日期是新闻系统文章发表日期
“shijian”是数据库时间名称,默认值。现在显示日期格式是2009-2-19,怎样将日期格式转换为02-19或19日,代码前后应该怎样修改?
如何在2月的前面加个0, 即02-19 展开
<body>
<%
sql="select top 8 * from cont order by id desc"
set rc=server.CreateObject("adodb.recordset")
rc.open sql,conn,1,1
%>
<table border="1">
<% Do while not rc.eof %><tr>
<td width="416"><span class="STYLE1">·</span><a href="list.asp?id=<%=rc("id") %>"><%= rc("title") %></a></td>
<td width="107"><%= rc("shijian") %></td>
</tr>
<%rc.movenext
Loop
%></table>
<a href="add.asp"><br>
添加 </a>
<p></p>
</body>
</html>
注:此日期是新闻系统文章发表日期
“shijian”是数据库时间名称,默认值。现在显示日期格式是2009-2-19,怎样将日期格式转换为02-19或19日,代码前后应该怎样修改?
如何在2月的前面加个0, 即02-19 展开
展开全部
<%
function getmd(d)
if len(d)>9 then
getmd=right(d,5)
elseif len(d)=9 then
getmd="0"+right(d,4)
else
getmd="errer!"
end if
end function
response.write getmd("2009-12-19")
%>
function getmd(d)
if len(d)>9 then
getmd=right(d,5)
elseif len(d)=9 then
getmd="0"+right(d,4)
else
getmd="errer!"
end if
end function
response.write getmd("2009-12-19")
%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<%
str="2009-2-19"
response.write money(str)&"-"&day(str)
%>
str="2009-2-19"
response.write money(str)&"-"&day(str)
%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
假如时间变量室date
则可以:month(date)&"-"&day(date)
则可以:month(date)&"-"&day(date)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<td width="107"><%= rc("shijian") %></td> 改成
<td width="107"><%= month(rc("shijian"))&"-"&day(rc("shijian") %></td>
<td width="107"><%= month(rc("shijian"))&"-"&day(rc("shijian") %></td>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
y=year(rc("shijian"))
m=month(rc("shijian"))
d=day(rc("shijian"))
if len(m)=1 then
m="0"&m
end if
if len(d)=1 then
d="0"&d
end if
shijian=m & "-" & d
m=month(rc("shijian"))
d=day(rc("shijian"))
if len(m)=1 then
m="0"&m
end if
if len(d)=1 then
d="0"&d
end if
shijian=m & "-" & d
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询