vote up 3 vote down star
3

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.

Do I need to do anything to make my custom server control do async postbacks while inside an UpdatePanel?

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.

<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>
flag
I would be interested in the answer to this as well. I have a custom control that implements IPostBackDataHandler that won't do a partial postback inside an UpdatePanel. There has to be some secret sauce that causes a control to get registered as a trigger when you use the UseChildrenAsTriggers property. – David Jul 27 at 22:12
what happens if you add an explicit trigger on the updatepanel to do a asynch postback on the customcontrol's event? – AndreasKnudsen Jul 31 at 18:15

5 Answers

vote up 0 vote down

Sorry...can't see the rest of the page.

Do you have a ScriptManager on your page, as well?

link|flag
Yes, sorry the code got cut off for some reason. Fixed now. ScriptManager is present as part of the Master Page. – DarenTx Jun 2 at 20:11
vote up 0 vote down

Does the custom control implement INamingContainer, and is the postback coming from another control inside that naming container?

I found a naming container boundary between the UpdatePanel and the source control can cause this behavior.

link|flag
vote up 0 vote down

One option might be as AndreasKnudsen suggests as adding an AsyncPostBackTrigger to your panel

<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>

Another option is to try adding ChildrenAsTriggers to your UpdatePanel tag

<asp:UpdatePanel ID="ClosedIssuesUpdatePanel" runat="server" ChildrenAsTriggers="true">
link|flag
ChildrenAsTriggers is true as default, so adding this would not be any different. – awe Aug 19 at 6:14
vote up 1 vote down

Put the update mode of your update panel to conditional.

<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>
link|flag
vote up 1 vote down

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.

Also, you're going to want to register your controls with the page's ScriptManager via ScriptManager.RegisterAsyncPostBackControl

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.