本文實例講述了asp.net中Timer無刷新定時器的實現(xiàn)方法。Timer控件要實現(xiàn)無刷新,得用到ajax技術(shù),這里使用VS2008自帶的ajax技術(shù)。
首先得添加一個ScriptManager控件,然后再添加一個UpdatePanel用于存放Timer控件內(nèi)容的,就可以實現(xiàn)無刷新了。下面是詳細的內(nèi)容:
一、前臺代碼如下:
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>標簽內(nèi),可以放在任意地方。而添加UpdatePanel 控件后,要用到它一個很重要的屬性ContentTemplate,要不然就無法實現(xiàn)無刷新效果。在這里我們設(shè)置6秒定時觸發(fā)事件一次。
二、后臺代碼如下:
protected void Page_Load(object sender, EventArgs e)
{}
protected void Timer1_Tick(object sender, EventArgs e)
{
//這里可以操作你想做的事情,比如定時查詢數(shù)據(jù)庫
ScriptManager.RegisterStartupScript(this, this.GetType(), "", "alert('Hello‘);", true);
}
希望本文所述實例對大家asp.net程序設(shè)計有所幫助。