Have a AJAX UpdatePanel in a MasterPage file:
<asp:UpdatePanel ID="upnlTimer" runat="server" UpdateMode="Conditional">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="tmrCountdown" EventName="Tick" />
</Triggers>
<ContentTemplate>
<asp:Timer ID="tmrCountdown" Enabled="false" runat="server" Interval="1000" />
<asp:Label ID="lblTimer" runat="server" Text="TEXT"></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
When i goto debug everything works well, dont get the postback flash as the timer counts down.
But when the user makes a selection from a RadioButtonList, of course the SelectedIndexChange events fires off and the PostBack goes off as expected.
One problem i am having though is that the UpdatePanel with the Timer/Label is freezing, albeit fractions of a second, but over time it can increase the time-alloted for the test by up to a full minute (60 secs) pending on the number of questions being asked.
Question:
Is there a way to isolate the PostBack away from the Timer UpdatePanel from the Question List?Placed an UpdatePanel on the Content PageWould it be better to place the ContentPlaceHolder, in MasterPage, within a UpdatePanel so that its postbacks are isolated from the Timer UpdatePanel?If i isolate the CPH, as #2, I can still access the MasterPage file name as i am right nowCType(me.Master, Main).Event
?- Having a problem with the Content Page UpdatePanel, either conflicting or stopping, the MasterPage Timer UpdatePanel. How would i go about fixing this problem?