怎么在asp网页上显示分钟和秒数
Rs("title")=Request("title")Rs("content")=HTMLcode(Request("content"))Rs("weather")=R...
Rs("title")=Request("title")
Rs("content")=HTMLcode(Request("content"))
Rs("weather")=Request("weather")
Rs("date")=year(now)&"-"&month(now)&"-"&day(now)
这段应该是设置显示年数和日期的,怎么让它在后面增加显示小时和分钟的 展开
Rs("content")=HTMLcode(Request("content"))
Rs("weather")=Request("weather")
Rs("date")=year(now)&"-"&month(now)&"-"&day(now)
这段应该是设置显示年数和日期的,怎么让它在后面增加显示小时和分钟的 展开
3个回答
展开全部
x=rs5("regtime") ---读取数据库里的时间字段
m=cint(Month(x)) ---取出月
n=cint(Day(x)) ---取出日
h=cint(hour(x)) ---取出时
t=cint(minute(x)) ---取出分
s=cint(second(x)) ---取出秒
if m < 10 then ---如果取出的数字小于10则在前面加个0
m = "0" & cstr(m)
end if
if n < 10 then
n = "0" & cstr(n)
end if
if t < 10 then
t = "0" & cstr(t)
end if
if s < 10 then
s = "0" & cstr(s)
end if
xx = Year(x)&"-"&m&"-"&n&" "&h&":"&t&":"&s ---组合时间显示格式为:2010-06-20 08:58:03
看下这个吧,你根据实际情况改下~
m=cint(Month(x)) ---取出月
n=cint(Day(x)) ---取出日
h=cint(hour(x)) ---取出时
t=cint(minute(x)) ---取出分
s=cint(second(x)) ---取出秒
if m < 10 then ---如果取出的数字小于10则在前面加个0
m = "0" & cstr(m)
end if
if n < 10 then
n = "0" & cstr(n)
end if
if t < 10 then
t = "0" & cstr(t)
end if
if s < 10 then
s = "0" & cstr(s)
end if
xx = Year(x)&"-"&m&"-"&n&" "&h&":"&t&":"&s ---组合时间显示格式为:2010-06-20 08:58:03
看下这个吧,你根据实际情况改下~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Rs("date")=year(now)&"-"&month(now)&"-"&day(now)&" "&hour(now)&":"&minute(now)
<%'获取当前时间的小时部分%>
<%=hour(now())%>
<%'获取当前时间的分钟部分%>
<%=minute(now())%>
<%'获取当前时间的秒数部分%>
<%=second(now())%>
<%'获取当前时间的小时部分%>
<%=hour(now())%>
<%'获取当前时间的分钟部分%>
<%=minute(now())%>
<%'获取当前时间的秒数部分%>
<%=second(now())%>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询