用ASP实现一个定时任务。怎么实现?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用ASP实现一个定时任务。怎么实现?相关的知识,希望对你有一定的参考价值。
在一定的时间内如果没有对表单页面进行处理就自动提交表单?
请问怎么样实现?
关键代码能不能共享一下
非常感激!
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>新建网页 1</title>
<script language="javascript">
function tijiao()
setTimeout("tijiao1()",2000);//2秒以后提交。
function tijiao1()
form1.submit();
</script>
</head>
<body onLoad="javascript:tijiao();">
<%if request("T1")<>"" then
response.write request("T1")
end if%>
<form method="POST" name="form1" action="index.asp">
<p>要提交的内容:<input type="text" name="T1" size="20" value="DFGDFGDFG"></p>
<p><input type="submit" value="提交" name="B1"><input type="reset" value="重置" name="B2"></p>
</form>
</body>
</html> 参考技术A 要用javascript,或者vbscript来实现 参考技术B <Script Language="VBScript">
sub timeover()
alert("时间到,系统自动提交!")
form1.submit(有时这个命令无法直接提交表单,我是使用提交按钮的click方法提交的)
clearTimeout(id)
end sub
id=setTimeout("timeover",<时间(单位:毫秒)>%>)
</Script>
以上是关于用ASP实现一个定时任务。怎么实现?的主要内容,如果未能解决你的问题,请参考以下文章
Asp-Net-Core开发笔记:集成Hangfire实现异步任务队列和定时任务
ASP.NET Core2.2+Quartz.Net 实现web定时任务