本文將使用Timer控件更新兩個UpdatePanel控件,Timer控件將放在UpdatePanel控件的外面,並將它配置爲UpdatePanel的觸發器,翻譯自官方文檔。html
主要內容git
在多個UpdatePanel中使用Timer控件工具
1.添加一個新頁面並切換到設計視圖。post
2.若是頁面沒有包含ScriptManager控件,在工具箱中的AJAX Extensions標籤下雙擊ScriptManager控件添加到頁面中。ui
3.雙擊Timer控件添加到Web頁面中。Timer控件能夠做爲UpdatePanel的觸發器無論它是否在UpdatePanel中。翻譯
4.雙擊UpdatePanel控件添加一個Panel到頁面中,並設置它的UpdateMode屬性值爲Conditional。設計
5.再次雙擊UpdatePanel控件添加第二個Panel到頁面中,並設置它的UpdateMode屬性值爲Conditional。orm
6.在UpdatePanel1中單擊,並在工具箱中Standard標籤下雙擊Label控件添加到UpdatePanel1中。server
7.設置Label控件的Text屬性值爲「UpdatePanel1 not refreshed yet」。xml
8.添加Label控件到UpdatePanel2。
9.設置第二個Label控件的Text屬性值爲「UpdatePanel2 not refreshed yet」。
10.設置Interval屬性爲10000。Interval屬性的單位是毫秒,因此咱們設置爲10000,至關於10秒鐘刷新一次。
11.雙擊Timer控件添加Tick事件處理,在事件處理中設置Label1和Label2的Text屬性值,代碼以下。
DateTime.Now.ToLongTimeString();
}
}
12.在UpdatePanel1和UpdatePanel2中添加Timer控件做爲AsyncPostBackTrigger,代碼以下:
</Triggers>
所有完成後ASPX頁面代碼以下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<div>
<asp:Timer ID="Timer1" OnTick="Timer1_Tick" runat="server" Interval="10000">
</asp:Timer>
</div>
<asp:UpdatePanel ID="UpdatePanel1" UpdateMode="Conditional" runat="server">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="Timer1" EventName="Tick" />
</Triggers>
<ContentTemplate>
<asp:Label ID="Label1" runat="server" Text="UpdatePanel1 not refreshed yet."></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
<asp:UpdatePanel ID="UpdatePanel2" UpdateMode="Conditional" runat="server">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="Timer1" EventName="Tick" />
</Triggers>
<ContentTemplate>
<asp:Label ID="Label2" runat="server" Text="UpdatePanel2 not refreshed yet."></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
</form>
</body>
</html>
13.保存並按Ctrl + F5運行。
14.等待10秒鐘後兩個UpdatePanel都刷新後,Label中的文本都變成了當前時間。
[翻譯自官方文檔]
posted @ 2006-11-15 21:43
TerryLee 閱讀(16772) 評論(53)
編輯
收藏