Custom Server Control causes full postbacks inside of UpdatePanel - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T03:02:38Z http://stackoverflow.com/feeds/question/941606 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/941606/custom-server-control-causes-full-postbacks-inside-of-updatepanel 3 Custom Server Control causes full postbacks inside of UpdatePanel DarenTx 2009-06-02T20:04:34Z 2009-09-02T04:21:24Z <p>I have a custom server control that seems to work fine until I put it in an UpdatePanel. Once inside the UpdatePanel it continues to work fine but the UpdatePanel now does full postbacks when my custom server control does a postback. </p> <p>Do I need to do anything to make my custom server control do async postbacks while inside an UpdatePanel?</p> <p>Here is the relevant code that is causing a full postback. The ecs:Pager control is my custom control that causes full postbacks on the OnCommand event even though it is in the UpdatePanel.</p> <pre><code>&lt;asp:UpdatePanel ID="ClosedIssuesUpdatePanel" runat="server"&gt; &lt;ContentTemplate&gt; &lt;ecs:Pager ID="ClosedIssuesPager" OnCommand="ClosedIssuesPager_Command" runat="server" /&gt; &lt;asp:Repeater ID="ClosedIssuesRepeater" runat="server"&gt; .... &lt;/asp:Repeater&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; </code></pre> http://stackoverflow.com/questions/941606/custom-server-control-causes-full-postbacks-inside-of-updatepanel/941618#941618 0 Answer by Steve J for Custom Server Control causes full postbacks inside of UpdatePanel Steve J 2009-06-02T20:06:28Z 2009-06-02T20:06:28Z <p>Sorry...can't see the rest of the page.</p> <p>Do you have a ScriptManager on your page, as well?</p> http://stackoverflow.com/questions/941606/custom-server-control-causes-full-postbacks-inside-of-updatepanel/1281095#1281095 0 Answer by David for Custom Server Control causes full postbacks inside of UpdatePanel David 2009-08-15T03:42:38Z 2009-08-15T03:42:38Z <p>Does the custom control implement INamingContainer, and is the postback coming from another control inside that naming container?</p> <p>I found a naming container boundary between the UpdatePanel and the source control can cause this behavior.</p> http://stackoverflow.com/questions/941606/custom-server-control-causes-full-postbacks-inside-of-updatepanel/1296267#1296267 0 Answer by Adam Fox for Custom Server Control causes full postbacks inside of UpdatePanel Adam Fox 2009-08-18T20:20:19Z 2009-08-18T20:20:19Z <p>One option might be as AndreasKnudsen suggests as adding an AsyncPostBackTrigger to your panel</p> <pre><code>&lt;asp:UpdatePanel ID="ClosedIssuesUpdatePanel" runat="server"&gt; &lt;ContentTemplate&gt; &lt;ecs:Pager ID="ClosedIssuesPager" OnCommand="ClosedIssuesPager_Command" runat="server" /&gt; &lt;asp:Repeater ID="ClosedIssuesRepeater" runat="server"&gt; .... &lt;/asp:Repeater&gt; &lt;/ContentTemplate&gt; &lt;Triggers&gt; &lt;AsyncPostBackTrigger ControlID="ClosedIssuesPager" EventName="Command" /&gt; &lt;/Triggers&gt; &lt;/asp:UpdatePanel&gt; </code></pre> <p>Another option is to try adding ChildrenAsTriggers to your UpdatePanel tag</p> <pre><code>&lt;asp:UpdatePanel ID="ClosedIssuesUpdatePanel" runat="server" ChildrenAsTriggers="true"&gt; </code></pre> http://stackoverflow.com/questions/941606/custom-server-control-causes-full-postbacks-inside-of-updatepanel/1319656#1319656 1 Answer by Cédric Boivin for Custom Server Control causes full postbacks inside of UpdatePanel Cédric Boivin 2009-08-23T21:46:07Z 2009-08-23T21:46:07Z <p>Put the update mode of your update panel to conditional.</p> <pre><code>&lt;asp:UpdatePanel ID="ClosedIssuesUpdatePanel" runat="server" UpdateMode="Conditional"&gt; &lt;ContentTemplate&gt; &lt;ecs:Pager ID="ClosedIssuesPager" OnCommand="ClosedIssuesPager_Command" runat="server" /&gt; &lt;asp:Repeater ID="ClosedIssuesRepeater" runat="server"&gt; .... &lt;/asp:Repeater&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; </code></pre> http://stackoverflow.com/questions/941606/custom-server-control-causes-full-postbacks-inside-of-updatepanel/1365815#1365815 1 Answer by rossisdead for Custom Server Control causes full postbacks inside of UpdatePanel rossisdead 2009-09-02T04:21:24Z 2009-09-02T04:21:24Z <p>You don't specify what kind of controls are being used in your custom control. Are they buttons or drop downs or something else? If they're buttons, you need to make sure that their UseSubmitBehavior properties are set to False.</p> <p>Also, you're going to want to register your controls with the page's ScriptManager via <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.scriptmanager.registerasyncpostbackcontrol.aspx" rel="nofollow">ScriptManager.RegisterAsyncPostBackControl</a></p>