UpdatePanel.Update()方法不更新UpdatePanel控件的内容?

时间:2012-09-24 13:11:10

标签: vb.net updatepanel

我在这里有一些相当简单的代码,但我不能为我的生活弄清楚为什么它不起作用。

我有一个名为Update.aspx的页面,其中包含以下HTML:

<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>

<div>
    Non Panel <%= Date.Now.ToLongTimeString%>
</div>
<asp:UpdatePanel ID="UpdatePanel1" runat="server" ChildrenAsTriggers="False" UpdateMode="Conditional">
    <ContentTemplate>
        <asp:Label ID="lbl" runat="server">Updates in 5</asp:Label>
    </ContentTemplate>
</asp:UpdatePanel>

背后的代码如下所示:

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        Dim t As New Timers.Timer
        t.Interval = 5000
        AddHandler t.Elapsed, AddressOf raiseupdate
        t.Start()
    End Sub

    Private Sub raiseupdate(ByVal sender As Object, ByVal e As System.EventArgs)
        sender.stop()
        lbl.Text = Date.Now.ToLongTimeString
        UpdatePanel1.Update()
    End Sub

这是我期望发生的事情:该页面在更新面板中显示“更新5”字样。计时器过去,调用raiseupdate()方法,并调用更新面板update()方法,刷新更新面板的内容。

实际发生的是:计时器过去了,达到了更新面板update()方法行,但数据似乎永远不会回到页面。也就是说,“5中更新”这个词永远不会被当前时间取代。

所以我认为我对update()方法实际上做了什么会遇到某种基本的误解,但我无法弄清楚我哪里出错了。我能做些什么才能做到这一点?

1 个答案:

答案 0 :(得分:2)

看起来像两个更新..来自更新面板的一个和来自计时器的一个更新你的代码。

相反,您可以使用ajax Timer并将其添加为AsyncPostBack触发器..这应该可以为您完成..

<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>

<div>
    Non Panel <%= Date.Now.ToLongTimeString%>
</div>
<asp:Timer ID="Timer1" OnTick="Timer1_Tick" runat="server" Interval="5000" />

<asp:UpdatePanel ID="UpdatePanel1" runat="server" ChildrenAsTriggers="False" UpdateMode="Conditional">
    <ContentTemplate>
        <asp:Label ID="lbl" runat="server">Updates in 5</asp:Label>
    </ContentTemplate>
   <Triggers>
     <asp:AsyncPostBackTrigger ControlID="Timer1" />
  </Triggers>
</asp:UpdatePanel>

您的VB代码将如下所示

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

End Sub

Private Sub Timer1_Tick(ByVal sender As Object, ByVal e As System.EventArgs)
     lbl.Text = Date.Now.ToLongTimeString

End Sub

如果这不起作用,您可以手动调用Timer_tick事件中的Update()