Custom Server Control causes full postbacks inside of UpdatePanel - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T03:02:38Zhttp://stackoverflow.com/feeds/question/941606http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/941606/custom-server-control-causes-full-postbacks-inside-of-updatepanel3Custom Server Control causes full postbacks inside of UpdatePanelDarenTx2009-06-02T20:04:34Z2009-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><asp:UpdatePanel ID="ClosedIssuesUpdatePanel" runat="server">
<ContentTemplate>
<ecs:Pager ID="ClosedIssuesPager" OnCommand="ClosedIssuesPager_Command" runat="server" />
<asp:Repeater ID="ClosedIssuesRepeater" runat="server">
....
</asp:Repeater>
</ContentTemplate>
</asp:UpdatePanel>
</code></pre>
http://stackoverflow.com/questions/941606/custom-server-control-causes-full-postbacks-inside-of-updatepanel/941618#9416180Answer by Steve J for Custom Server Control causes full postbacks inside of UpdatePanelSteve J2009-06-02T20:06:28Z2009-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#12810950Answer by David for Custom Server Control causes full postbacks inside of UpdatePanelDavid2009-08-15T03:42:38Z2009-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#12962670Answer by Adam Fox for Custom Server Control causes full postbacks inside of UpdatePanelAdam Fox2009-08-18T20:20:19Z2009-08-18T20:20:19Z<p>One option might be as AndreasKnudsen suggests as adding an AsyncPostBackTrigger to your panel</p>
<pre><code><asp:UpdatePanel ID="ClosedIssuesUpdatePanel" runat="server">
<ContentTemplate>
<ecs:Pager ID="ClosedIssuesPager" OnCommand="ClosedIssuesPager_Command" runat="server" />
<asp:Repeater ID="ClosedIssuesRepeater" runat="server">
....
</asp:Repeater>
</ContentTemplate>
<Triggers>
<AsyncPostBackTrigger ControlID="ClosedIssuesPager" EventName="Command" />
</Triggers>
</asp:UpdatePanel>
</code></pre>
<p>Another option is to try adding ChildrenAsTriggers to your UpdatePanel tag</p>
<pre><code><asp:UpdatePanel ID="ClosedIssuesUpdatePanel" runat="server" ChildrenAsTriggers="true">
</code></pre>
http://stackoverflow.com/questions/941606/custom-server-control-causes-full-postbacks-inside-of-updatepanel/1319656#13196561Answer by Cédric Boivin for Custom Server Control causes full postbacks inside of UpdatePanelCédric Boivin2009-08-23T21:46:07Z2009-08-23T21:46:07Z<p>Put the update mode of your update panel to conditional.</p>
<pre><code><asp:UpdatePanel ID="ClosedIssuesUpdatePanel" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<ecs:Pager ID="ClosedIssuesPager" OnCommand="ClosedIssuesPager_Command" runat="server" />
<asp:Repeater ID="ClosedIssuesRepeater" runat="server">
....
</asp:Repeater>
</ContentTemplate>
</asp:UpdatePanel>
</code></pre>
http://stackoverflow.com/questions/941606/custom-server-control-causes-full-postbacks-inside-of-updatepanel/1365815#13658151Answer by rossisdead for Custom Server Control causes full postbacks inside of UpdatePanelrossisdead2009-09-02T04:21:24Z2009-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>