ajax中如何控制timer控件作用范围?
我并列放置了UpdatePanel1和UpdatePanel2(非套用关系)。UpdatePanel1中包含timer1,刷新时间为1秒;UpdatePanel2中放置了...
我并列放置了UpdatePanel1和UpdatePanel2(非套用关系)。UpdatePanel1中包含timer1,刷新时间为1秒;UpdatePanel2中放置了timer2,刷新时间为2秒。原来想让两个时钟分别按1s和2s刷新,但运行时页面上所有时钟均按照timer1的1秒进行刷新。请问如何解决? 相关代码:<tr><td>信息列表 <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <asp:Timer ID="Timer1" runat="server" Interval="1000" ontick="Timer1_Tick"> </asp:Timer> <asp:Label ID="Label1" runat="server" Text="Label"> <%=DateTime.Now.ToString() %></asp:Label> </ContentTemplate> </asp:UpdatePanel></td> <td>用户列表 <asp:UpdatePanel ID="UpdatePanel2" runat="server"> <ContentTemplate> <asp:Timer ID="Timer2" runat="server" Interval="2000" ontick="Timer2_Tick"> </asp:Timer> <asp:Label ID="Label2" runat="server" Text="Label"> <%=DateTime.Now.ToString() %> </asp:Label> </ContentTemplate> </asp:UpdatePanel> </td></tr>
展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询