经过一段时间后,是否可以生成回发? 让我们说:我有一些文本,用户必须在文本框中键入。如果他在接下来的1分钟内没有输入任何内容,则应该刷新页面,显示警告或其他内容
答案 0 :(得分:2)
本文应该有所帮助:http://www.codeproject.com/Articles/12293/Auto-postback-in-ASP-NET
但是,您必须集成自己的业务逻辑以便回发,或者因为您未能包含源代码。但是,此示例包含StopTheClock()
方法,因此您可能希望在文本框中附加某种“OnChange”事件,以便在值不为空时停止时钟。
另一种方法是在每次滴答后检查文本框的值(本例中为1秒),然后在回发之前检查(form.submit),然后在textbox.value不为空的情况下直接停止计时器。 / p>
<script language="JavaScript" type="text/javascript">
<!--
// Script to generate an automatic postBack to the server
var secs
var timerID = null
var timerRunning = false
var delay = 1000
function InitializeTimer()
{
// Set the length of the timer,
// in seconds. Your choise
secs = 5
StopTheClock()
StartTheTimer()
}
function StopTheClock()
{
if(timerRunning)
clearTimeout(timerID)
timerRunning = false
}
function StartTheTimer()
{
if (secs==0)
{
StopTheClock()
//Generate a Postback to the server
document.forms[0].submit()
}
else
{
secs = secs - 1
timerRunning = true
timerID = self.setTimeout("StartTheTimer()", delay)
}
}
//-->
</script>
<body onload="InitializeTimer()">
<form id="form1" runat="server">
<div>
The time is: <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</div>
</form>
</body>
答案 1 :(得分:1)
我强烈建议AGAINST采用这样的方法。您所需要的只是通知用户或修改页面的一部分。完全回发真的是一种浪费。相反,我建议使用Ajax。也许使用javascript添加计时器,听取所需的事件并根据需要提出ajax请求。