Why does the Update Panel do a full post back for custom control? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T11:44:38Z http://stackoverflow.com/feeds/question/616884 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/616884/why-does-the-update-panel-do-a-full-post-back-for-custom-control 0 Why does the Update Panel do a full post back for custom control? brendan 2009-03-05T22:12:10Z 2009-03-06T00:58:57Z <p>I have a rather complex custom control - the custom control has a couple of update panels in it.</p> <p>I am trying to use the control like this inside of an update panel:</p> <pre><code> &lt;asp:UpdatePanel ID="up1" runat="server"&gt; &lt;ContentTemplate&gt; &lt;asp:Button ID="btn1" runat="server" Text="Sample Button" /&gt;&amp;nbsp;&amp;nbsp;&lt;asp:Label ID="lblTime" runat="server"&gt;&lt;/asp:Label&gt; &lt;cc1:MyCustomControl ID="MyCustomControl1" runat="server" &gt; &lt;/cc1:MyCustomControl&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; </code></pre> <p>When I click the button in the update panel, it does an async post back and there is no screen "flicker" When I click a button in my custom control the page flickers and does a full post back. </p> <p>Inside the custom control, there are update panels that are trying to do full postbacks (based on triggers). </p> <p>How can I make the page level UpdatePanel not do a full postback no matter what is going in inside of the custom control?</p> http://stackoverflow.com/questions/616884/why-does-the-update-panel-do-a-full-post-back-for-custom-control/617173#617173 0 Answer by Rex M for Why does the Update Panel do a full post back for custom control? Rex M 2009-03-05T23:33:49Z 2009-03-05T23:33:49Z <p>On the UpdatePanel, set the property <code>ChildrenAsTriggers="true"</code>. This tells the UpdatePanel to intercept <em>all</em> PostBack invocations that originate from inside the UpdatePanel.</p> <p>You may want to also explore the <a href="http://msdn.microsoft.com/en-us/library/d9w023sx.aspx" rel="nofollow">UpdateMode property</a>, which determines what kinds of events trigger an update. (By default, an UpdatePanel will refresh if any other panel on the screen gets refreshed. This threw me for awhile until I realized what was going on.)</p> http://stackoverflow.com/questions/616884/why-does-the-update-panel-do-a-full-post-back-for-custom-control/617187#617187 0 Answer by Freddy Rios for Why does the Update Panel do a full post back for custom control? Freddy Rios 2009-03-05T23:40:22Z 2009-03-05T23:47:12Z <p>I would first look if there is some other issue with the custom control causing the full page postback, as in any case what should be happening is that the whole update panel refreshes (still with ajax).</p> <p>After that, just look at the Nesting UpdatePanel Controls section of this: <a href="http://msdn.microsoft.com/en-us/library/bb398867.aspx#" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb398867.aspx#</a></p> <p>Also make sure to have the ScriptManager control with the property EnablePartialRendering set to true.</p> http://stackoverflow.com/questions/616884/why-does-the-update-panel-do-a-full-post-back-for-custom-control/617219#617219 0 Answer by Michael Kniskern for Why does the Update Panel do a full post back for custom control? Michael Kniskern 2009-03-05T23:53:51Z 2009-03-06T00:09:43Z <p>Have you thought about explicitly setting an asp:AsyncPostBackTrigger with the btn1 control in the up1 UpdatePanel control.</p> <pre><code>&lt;asp:UpdatePanel ID="up1" runat="server"&gt; &lt;Triggers&gt; &lt;asp:AsyncPostBackTrigger ControlID="btn1" EventName="Click" /&gt; &lt;/Triggers&gt; &lt;ContentTemplate&gt; &lt;asp:Button ID="btn1" runat="server" Text="Sample Button" /&gt; &lt;asp:Label ID="lblTime" runat="server"&gt;&lt;/asp:Label&gt; &lt;cc1:MyCustomControl ID="MyCustomControl1" runat="server" /&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; </code></pre> <p><b>Edit:</b> How you tried to explicitly call the Update method in the button's OnClick event for the Update Panel? This includes the Update panels embedded within the custom control.</p> http://stackoverflow.com/questions/616884/why-does-the-update-panel-do-a-full-post-back-for-custom-control/617375#617375 0 Answer by brendan for Why does the Update Panel do a full post back for custom control? brendan 2009-03-06T00:58:57Z 2009-03-06T00:58:57Z <p>Figured out the solution similar issue to this: <a href="http://stackoverflow.com/questions/225666/how-can-i-get-an-updatepanel-to-intercept-a-compositecontrols-dropdownlist">http://stackoverflow.com/questions/225666/how-can-i-get-an-updatepanel-to-intercept-a-compositecontrols-dropdownlist</a></p> <p>Except my control causing the postback was in an updatepanel with a full postback trigger. I was able to pull that control out so it was not nested with in update panels and that resolved it.</p>