ASP.NET / AJAX - 从外部触发的Web用户控件更新面板

时间:2010-05-05 13:47:17

标签: asp.net-ajax triggers web-user-controls

我有一个带有updatepanel的网络用户控件。在我的主页上,我得到了其中3个控件。现在我想在主页面上有一个计时器,它会触发Web用户控件中的更新面板。

我该如何管理?

提前致谢。

1 个答案:

答案 0 :(得分:1)

Using the AJAX Timer Control as an UpdatePanel Trigger

在UserControl中实现一个Update-Function,它调用Update-Panel的Update-Function,并在TimerTick-Event的Mainpage中为每个控件调用它。 设置UserControls的UpdatePanels UpdatePanels = Conditional。

例如,在UserControl的Codebehind中:

Public Sub Update()
    'bind Data to your UpdatePanel's content f.e.:
    Me.Label1.Text = Date.Now.ToLongTimeString
    Me.UpdatePanel1.Update()
End Sub

在您的主页:

Private myControls As New List(Of WebUserControl1)

Private Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
     For i As Int32 = 1 To 10
        Dim newControl As WebUserControl1= DirectCast(LoadControl("./WebUserControl1.ascx"), WebUserControl1)
        myControls.Add(newControl)
        MainPanel.Controls.Add(newControl)
     Next
End Sub

Protected Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    'in this example added dynamically
    For Each ctrl As WebUserControl1 In Me.myControls 
        ctrl.Update()
    Next
End Sub

在UserControl的ascx文件中:

<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
    <ContentTemplate>
        <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>             
    </ContentTemplate>
</asp:UpdatePanel>

在Mainpage的aspx文件中:

<asp:UpdatePanel ID="UpdatePanel1" runat="server">
    <ContentTemplate>
     <asp:Panel ID="MainPanel"  runat="server">
        <asp:Timer ID="Timer1" runat="server" Interval="1000"></asp:Timer>
     </asp:Panel>             
    </ContentTemplate>
</asp:UpdatePanel>