asp里如何实现到某个具体时间自动刷新页面?如下代码!
iftime()>#05:30:00#andtime()<#06:30:00#thenresponse.write"上午5:30-6:30为锻炼时间,谢绝访问,请保重!"...
if time()>#05:30:00# and time()<#06:30:00# then
response.write "上午5:30-6:30为锻炼时间,谢绝访问,请保重!"
response.End()
elseif time()>#08:00:00# and time()<#09:00:00# then
response.write "上午8:00-9:00为工作时间,谢绝访问,请见谅!"
response.End()
else time()>#00:00:00# and time()<#02:00:00# then
response.write "夜间0:00-2:00为休息时间,可以访问,谢谢!"
response.End()
end if
我把如上代码放在一个页面,以上只可以实现手动刷新,某个时间段才可以出现响应的话,如果长事件停留在这个页面,到时间了也不变。我现在想实现的就是长时间停留在这个页面,到我指定的时间段了就自动刷新页面,出现相应的话! 展开
response.write "上午5:30-6:30为锻炼时间,谢绝访问,请保重!"
response.End()
elseif time()>#08:00:00# and time()<#09:00:00# then
response.write "上午8:00-9:00为工作时间,谢绝访问,请见谅!"
response.End()
else time()>#00:00:00# and time()<#02:00:00# then
response.write "夜间0:00-2:00为休息时间,可以访问,谢谢!"
response.End()
end if
我把如上代码放在一个页面,以上只可以实现手动刷新,某个时间段才可以出现响应的话,如果长事件停留在这个页面,到时间了也不变。我现在想实现的就是长时间停留在这个页面,到我指定的时间段了就自动刷新页面,出现相应的话! 展开
4个回答
展开全部
刚给你写了一个。但这个时间判断是用客户端的时间判断的,如果你要根据判断服务器的时间判断,那得再写个ajax获取服务器时间。
<script language="javascript" type="text/javascript">
function getNowTime(){
//取得当前时间
var now= new Date();
var year=now.getYear();
var month=now.getMonth()+1;
var day=now.getDate();
var hour=now.getHours();
var minute=now.getMinutes();
var second=now.getSeconds();
var nowdate=year+"-"+month+"-"+day+" "+hour+":"+minute+":"+second;
return nowdate;
}
function a()
{ nowtime=getNowTime();
nowhour=nowtime.split(' ')[1].split(':')[0];
if(parseInt(nowhour)<8)
document.write("太早了");
if((parseInt(nowhour)>18))
document.write("太晚了");
}
setInterval(a,1000);
</script>
<script language="javascript" type="text/javascript">
function getNowTime(){
//取得当前时间
var now= new Date();
var year=now.getYear();
var month=now.getMonth()+1;
var day=now.getDate();
var hour=now.getHours();
var minute=now.getMinutes();
var second=now.getSeconds();
var nowdate=year+"-"+month+"-"+day+" "+hour+":"+minute+":"+second;
return nowdate;
}
function a()
{ nowtime=getNowTime();
nowhour=nowtime.split(' ')[1].split(':')[0];
if(parseInt(nowhour)<8)
document.write("太早了");
if((parseInt(nowhour)>18))
document.write("太晚了");
}
setInterval(a,1000);
</script>
展开全部
'tname为您的表名称
Set objColumnRS = Conn.OpenSchema(4,Array(Empty, Empty, tname))
do while not objColumnRS.EOF
objColumnRS("Column_Default") '返回该字段默认值
objColumnRS("Column_Name") '返回字段名
objColumnRS.MoveNext
Loop
Set objColumnRS = Nothing
Set objColumnRS = Nothing
请参考
Set objColumnRS = Conn.OpenSchema(4,Array(Empty, Empty, tname))
do while not objColumnRS.EOF
objColumnRS("Column_Default") '返回该字段默认值
objColumnRS("Column_Name") '返回字段名
objColumnRS.MoveNext
Loop
Set objColumnRS = Nothing
Set objColumnRS = Nothing
请参考
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用javascript吧
<script type="text/javascript">
<!--
function Ref(){
self.location.reload();
}
//1000表示1秒
setInterval('Ref()',1000*6000);
//-->
</script>
<script type="text/javascript">
<!--
function Ref(){
self.location.reload();
}
//1000表示1秒
setInterval('Ref()',1000*6000);
//-->
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<meta http-equiv="refresh" content="10;url=http://www.baidu.com">
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询