modal pop up extender shows on the page for few minuteshttp://forums.asp.net/t/1773596.aspx/1?modal+pop+up+extender+shows+on+the+page+for+few+minutesMon, 27 Feb 2012 02:13:14 -050017735964850076http://forums.asp.net/p/1773596/4850076.aspx/1?modal+pop+up+extender+shows+on+the+page+for+few+minutesmodal pop up extender shows on the page for few minutes <p>Hi All,</p> <p>I have an update progress control, the control works fine, but I have seen when I load the application, I can see the ModalPopupextender for few seconds and then it goes away when the page loads. Is their anyway, the ModalPopUpExtender does not show on the page when the page loads, it only shows when it is waiting. below is my entire code</p> <pre class="prettyprint">&lt;%@ Register Assembly=&quot;AjaxControlToolkit&quot; Namespace=&quot;AjaxControlToolkit&quot; TagPrefix=&quot;asp&quot; %&gt; &lt;script type=&quot;text/javascript&quot; language=&quot;javascript&quot;&gt; var ModalProgress = '&lt;%= ModalProgress.ClientID %&gt;'; Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(beginReq); Sys.WebForms.PageRequestManager.getInstance().add_endRequest(endReq); function beginReq(sender, args) { // shows the Popup $find(ModalProgress).show(); } function endReq(sender, args) { // shows the Popup $find(ModalProgress).hide(); } &lt;/script&gt; &lt;asp:Panel ID=&quot;panelUpdateProgress&quot; runat=&quot;server&quot; CssClass=&quot;updateProgress&quot;&gt; &lt;asp:UpdateProgress ID=&quot;UpdateProg1&quot; DisplayAfter=&quot;0&quot; runat=&quot;server&quot;&gt; &lt;ProgressTemplate&gt; &lt;div style=&quot;position: relative; top: 30%; text-align: center;&quot;&gt; &lt;img src=&quot;../Images/progress.gif&quot; style=&quot;vertical-align: middle&quot; alt=&quot;Processing&quot; /&gt; Processing ... &lt;/div&gt; &lt;/ProgressTemplate&gt; &lt;/asp:UpdateProgress&gt; &lt;/asp:Panel&gt; &lt;asp:ModalPopupExtender ID=&quot;ModalProgress&quot; runat=&quot;server&quot; TargetControlID=&quot;panelUpdateProgress&quot; BackgroundCssClass=&quot;modalBackground&quot; PopupControlID=&quot;panelUpdateProgress&quot; /&gt;</pre> <pre class="prettyprint">&nbsp;</pre> <p>any help will be appreciated</p> <p>Thanks</p> 2012-02-24T21:34:31-05:004850109http://forums.asp.net/p/1773596/4850109.aspx/1?Re+modal+pop+up+extender+shows+on+the+page+for+few+minutesRe: modal pop up extender shows on the page for few minutes <p>I hink I found the answer. I will try it though</p> <p>h<a href="http://mattberseth.com/blog/2007/08/how_to_stop_the_modalpopup_fli.html">ttp://mattberseth.com/blog/2007/08/how_to_stop_the_modalpopup_fli.html</a></p> 2012-02-24T22:27:50-05:004850114http://forums.asp.net/p/1773596/4850114.aspx/1?Re+modal+pop+up+extender+shows+on+the+page+for+few+minutesRe: modal pop up extender shows on the page for few minutes I couldn't open the link you posted. Anyway, try setting style=&quot;display: none&quot; on the panel. 2012-02-24T22:33:13-05:004851790http://forums.asp.net/p/1773596/4851790.aspx/1?Re+modal+pop+up+extender+shows+on+the+page+for+few+minutesRe: modal pop up extender shows on the page for few minutes <p>Hi,<br> Please refer to this thread which has a similar request to yours here: <a href="/p/1273063/2421296.aspx#2421296"> http://forums.asp.net/p/1273063/2421296.aspx#2421296</a></p> <p><a href="http://reflexangle.blogspot.in/2008/09/modal-popup-extender-and-flicker-issues.html">http://reflexangle.blogspot.in/2008/09/modal-popup-extender-and-flicker-issues.html</a></p> 2012-02-27T02:13:14-05:00