タイマーを設定した更新パネルを使用しています。問題は、タイマーが変更されるたびに、すべての更新パネルが更新され、ちらつきが発生するため、ドロップダウンで値を選択できないことです。どうすればこの問題を解決できますか。
これが私のコードです。
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional" ChildrenAsTriggers="false">
<ContentTemplate>
<asp:Label ID="Label1" Text="Remaining Time" runat="server"></asp:Label>
<asp:Label ID="lblTimeSpan" Visible="false" Text="" runat="server"></asp:Label>
<asp:Label ID="lblRemainingTime" Text="" runat="server"></asp:Label>
<asp:Timer ID="Timer1" runat="server" OnTick="Timer1_Tick" Enabled="true" Interval="1000" ></asp:Timer>`//Timer`
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="Timer1" EventName="Tick" />
</Triggers>
</asp:UpdatePanel>