在MasterPage文件中有一个AJAX UpdatePanel:
<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>
当我转到调试时,一切运行正常,当计时器倒计时时,不要获得回发闪存。
但是当用户从RadioButtonList中进行选择时,当然会触发SelectedIndexChange事件并且PostBack会按预期方式关闭。
我遇到的一个问题是带有定时器/标签的UpdatePanel是冻结的,虽然只是几分之一秒,但随着时间的推移,它可以将测试的时间增加最多一分钟(60秒)等待问题的数量。
CType(me.Master, Main).Event
?答案 0 :(得分:0)
我认为您遇到了UpdatePanel令人烦恼的超时。 我建议你尝试改进Radiobutton的SelectedIndexChanged中的任何代码,或尝试不使用UpdatePanel的其他方法。