实例学习asp.net中Timer无刷新定时器的用法。Timer控件要实现无刷新,得用到ajax技术,这里使用VS2008自带的ajax技术。
首先,添加一个ScriptManager控件,然后再添加一个UpdatePanel用于存放Timer控件内容的,即可实现无刷新了。
一、前台代码:
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Timer ID="Timer1" runat="server" Interval="60000" ontick="Timer1_Tick">
</asp:Timer>
</ContentTemplate>
</asp:UpdatePanel>
</form>
记得ScriptManager 一定要放在<form>标签内,可以放在任意地方。
而添加UpdatePanel 控件后,要用到它一个很重要的属性ContentTemplate,要不然就无法实现无刷新效果。
这里设置6秒定时触发事件一次。
二、后台代码:
protected void Page_Load(object sender, EventArgs e)
{}
protected void Timer1_Tick(object sender, EventArgs e)
{
//操作代码,比如定时查询
数据库
ScriptManager.RegisterStartupScript(this, this.GetType(), "", "alert('Hello‘);", true);
}