ASP.NET AJAX入門系列(11):在多個UpdatePanle中使用Timer控件

本文將使用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中的文本都變成了當前時間。

 

[翻譯自官方文檔]
支持TerryLee的創業產品 Worktile
Worktile,新一代簡單好用、體驗極致的團隊協同、項目管理工具,讓你和你的團隊隨時隨地一塊兒工做。徹底免費,如今就去了解一下吧。
https://worktile.com
綠色通道: 好文要頂 關注我 收藏該文 與我聯繫
0
0
(請您對文章作出評價)
posted @ 2006-11-15 21:43 TerryLee 閱讀(16772) 評論(53) 編輯 收藏

 

  回覆引用
#51樓 2009-05-14 01:35 菜鳥1111[未註冊用戶]
爲什麼我用timer控件可是沒起效果啊???
  回覆引用
#52樓 2009-08-26 10:26 Jimixu  
爲何沒人發現標題的panel打錯了呢?
支持(0)反對(0)
  回覆引用
#53樓 2009-09-11 13:41 釘子戶  
引用Jimixu:爲何沒人發現標題的panel打錯了呢?
很細心的嘛 技術東西真得是……
相關文章
相關標籤/搜索