asp time
http://zhidao.baidu.com/question/18117108.htmlasp+accessstarttime=now()time=5现在想做个判断,...
http://zhidao.baidu.com/question/18117108.html
asp+access
starttime=now()
time=5
现在想做个判断,如果是starttime开始后的time天内 允许,如果超过starttime后的time天,失效
各位朋友帮帮忙,asp 怎么写?
starttime 是变量,已写入到数据库,开始的时间,2006-12-5 15:23:26 格式的,
time 里的常量是天数,比如time是1
那我就希望在2006-12-6 15:23:26 后失效!还有,在有效时间的时候,如何实时、到计时显示剩余时间?
代码越详细完整越好,谢谢!我很菜的!急,在线等。
sub chktime()
set rstime=server.createobject("adodb.recordset")
nowtime=now()
rstime.open "select soft_joindate,soft_endtime from soft ",conn,1,1
starttime=rs("soft_startdate")
sec=rs("soft_endtime")*86400
ifdatediff("s",starttime,now()) sec then
response.write("<script language=javascript>alert('对不起,你没有查看该页的权限或已超时,请重新登录!');history.go(-1)</script>")
else
response.redirect("down.asp")
end if
end sub
我这样写了,是不是错了? 展开
asp+access
starttime=now()
time=5
现在想做个判断,如果是starttime开始后的time天内 允许,如果超过starttime后的time天,失效
各位朋友帮帮忙,asp 怎么写?
starttime 是变量,已写入到数据库,开始的时间,2006-12-5 15:23:26 格式的,
time 里的常量是天数,比如time是1
那我就希望在2006-12-6 15:23:26 后失效!还有,在有效时间的时候,如何实时、到计时显示剩余时间?
代码越详细完整越好,谢谢!我很菜的!急,在线等。
sub chktime()
set rstime=server.createobject("adodb.recordset")
nowtime=now()
rstime.open "select soft_joindate,soft_endtime from soft ",conn,1,1
starttime=rs("soft_startdate")
sec=rs("soft_endtime")*86400
ifdatediff("s",starttime,now()) sec then
response.write("<script language=javascript>alert('对不起,你没有查看该页的权限或已超时,请重新登录!');history.go(-1)</script>")
else
response.redirect("down.asp")
end if
end sub
我这样写了,是不是错了? 展开
展开全部
sub chktime()
set rstime=server.createobject("adodb.recordset")
nowtime=now()
rstime.open "select soft_joindate,soft_endtime from soft ",conn,1,1
starttime=rstime("soft_startdate")
sec=rstime("soft_endtime")*86400
ifdatediff("s",starttime,now()) sec then
response.write("<script language=javascript>alert('对不起,你没有查看该页的权限或已超时,请重新登录!');history.go(-1)</script>")
else
response.redirect("down.asp")
end if
end sub
可以写 没问题
set rstime=server.createobject("adodb.recordset")
nowtime=now()
rstime.open "select soft_joindate,soft_endtime from soft ",conn,1,1
starttime=rstime("soft_startdate")
sec=rstime("soft_endtime")*86400
ifdatediff("s",starttime,now()) sec then
response.write("<script language=javascript>alert('对不起,你没有查看该页的权限或已超时,请重新登录!');history.go(-1)</script>")
else
response.redirect("down.asp")
end if
end sub
可以写 没问题
Storm代理
2023-07-25 广告
2023-07-25 广告
StormProxies是一家提供动态代理服务器服务的企业,旨在帮助用户更好地管理网络访问和安全。以下是一些关于StormProxies的IP动态代理服务的特点:1. 高匿名性:StormProxies的动态代理服务器具有高匿名性,可以有效...
点击进入详情页
本回答由Storm代理提供
展开全部
<%
'这里暂时假设为2007-1-5 15:23:26,这个变量你可以从数据库里读出
starttime="2007-1-5 15:23:26"
'这里你上面用了time=5是不行的,time是关键词,不能作为变量
e_time=5
'算出5天的秒数
e_time=e_time*86400 '每天有86400秒
if datediff("s",starttime,now())>=e_time then
'这里添加超过5天的处理程序
else
'这里添加不到5天的处理程序
end if
%>
'这里暂时假设为2007-1-5 15:23:26,这个变量你可以从数据库里读出
starttime="2007-1-5 15:23:26"
'这里你上面用了time=5是不行的,time是关键词,不能作为变量
e_time=5
'算出5天的秒数
e_time=e_time*86400 '每天有86400秒
if datediff("s",starttime,now())>=e_time then
'这里添加超过5天的处理程序
else
'这里添加不到5天的处理程序
end if
%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询