hello,
i am using an UpdatePanel with an UpdateProgress control to display a message if the computing takes more than 3 seconds to respond. everything works fine in IE v10 and Safari, but for some reason in Firefox, the 3 second message appears at page load before the user does anything on the page. the code looks like this.
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional"><Triggers><asp:AsyncPostBackTrigger ControlID="Button1" /></Triggers><ContentTemplate><%-- GridView code --%></ContentTemplate></asp:UpdatePanel><asp:UpdateProgress ID="UpdateProgress1" runat="server" AssociatedUpdatePanelID="UpdatePanel1" DisplayAfter="3000" ><ProgressTemplate><div><img src="/Images/spinner.gif" alt="Computing" />Computing</div></ProgressTemplate></asp:UpdateProgress>
is there something i can do in ASP.NET (no javascript) to make Firefox work like IE and Safari?