我在我的ASP.NET頁面中有一個定時器控件,我試圖把它放到UpdatePanel中,但結果仍然是一樣的。下面的代碼刻度事件不會觸發。甚至不回發頁面。ASP.NET定時器控制不起作用
<ajax:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"/>
<asp:Timer ID="tmrUpdateLocations" runat="server" OnTick="tmrUpdateLocations_Tick" Interval="1000"></asp:Timer>
<div id="googleMap" style="width:100%;height:500px"></div>
<asp:Label ID="lbl" runat="server" Text="!!!"></asp:Label>
代碼隱藏:
protected void tmrUpdateLocations_Tick(object sender, EventArgs e)
{
lbl.Text = "TRYING!!";
}
順便說一句定時器。 這裏是web.config中:
<pages>
<controls>
<add tagPrefix="ajax" assembly="AjaxControlToolkit" namespace="AjaxControlToolkit"/>
</controls>
</pages>
,當然我加入AjaxControlToolkit從NuGet包管理器..