1

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

我有一个名为的页面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

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

实际发生的情况是:计时器已过,update()已到达更新面板方法行,但数据似乎从未返回到页面。也就是说,“Updates in 5”永远不会替换为当前时间。

所以我想我对这个方法的实际作用遇到了某种基本的误解update(),但我不知道我哪里出错了。我能做些什么来完成这项工作?

4

1 回答 1

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()

于 2012-09-24T20:36:43.427 回答