asp 控件定时器 局部刷新

<asp:ScriptManager ID="ScriptManager1" runat="server" />
<asp:UpdatePanel ID="UpdatePanel3" runat="server">
<ContentTemplate>
<asp:Timer ID="Timer1" runat="server" Interval="1000" OnTick="Timer1_Tick">
</asp:Timer>
<asp:Label ID="Label3" runat="server" Text="Label"></asp:Label><br />
</ContentTemplate>
</asp:UpdatePanel>
<asp:Label ID="Label4" runat="server" Text="Label"></asp:Label>

原文地址:https://www.cnblogs.com/lacey/p/6902161.html