ASP是否可以定时触发事件

发布时间:2022-04-17 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了ASP是否可以定时触发事件脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
其实做这个的原理是很简单的,只是我们当时没有仔细的去想想该怎么实现,我这里用的是XMlhttp来实现的,当然还有其它的办法,我就不多说了。
现在看论坛上很多都是要一些“完整的代码”,看了之后真的是....汗-_-! 

a.htML 
复制代码 代码如下:
<?xml version="1.0" encoding="UTF-8"?> 
<!DOCTYPE HTML PubLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<tITle> xmlhttpMission - http://www.never-online.net </title> 
<;meta http-equiv="ImageToolbar" content="no" /> 
<meta name="author" content="BlueDestiny, never-online"/> 
<meta name="keywords" content="Mozilla CSS, C#, .net, Refercence, www.never-online.net"/> 
<meta name="description" content="BlueDestiny, never-online"/> 
<meta name="title" content="Mozilla CSS Refercence And Demo - http://www.never-online.net" /> 
<meta name="creator.name" content="Genius Lau, never-online, blueDestiny" /> 
<style type="text/css" media="all" title="Default"> 
@import "main.css"; 
</style> 
<script type="text/javascript"> 
 //<![CDATA[ 
 function mission() { 
  VAR x = new ActiveXObject("Msxml2.XMLHTTP.3.0"); 
  x.open("get","now.asp?t="+Math.random().toFixed(4),false); 
  x.send(); 
  var demo = document.getElementById("demo"); 
  var now = demo.innerHTML = x.responseText; 
  if(now == "2006-6-23 15:42:20") { 
   var wnd = window.open("http://blog.csdn.net/BlueDestiny","",""); 
  }; 
  _x = window.setTimeout(mission,1000) 
 } 
 onload = mission; 
 //]]> 
 </script> 
</head> 
<body id="www.never-online.net"> 
<div id="demo"></div> 
</body> 
</html>


now.asp 
复制代码 代码如下:
<% 
call main() 
Function main() 
response.write(now()) 
End Function 
%> 

脚本宝典总结

以上是脚本宝典为你收集整理的ASP是否可以定时触发事件全部内容,希望文章能够帮你解决ASP是否可以定时触发事件所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: