show/hide this revision's text 2 added 429 characters in body

You would make a new PostBack trigger inside your updatepanel that is set to the ID of your button.

example:

<Triggers>
    <asp:PostBackTrigger ControlID="Button1" />
</Triggers>

This would go inside your UpdatePanel as another component aside from your content template.

Like this:

<asp:UpdatePanel ID="UpdatePanel1" runat="server" 
     UpdateMode="Conditional" RenderMode="Inline" ChildrenAsTriggers="False">
 <Triggers>
    <asp:PostBackTrigger ControlID="Save" />
 </Triggers>
 <ContentTemplate>
    <asp:Button ID="Save" runat="server" Text="Save" 
         onclick="Save_Click" CssClass="boton" />
 </ContentTemplate>
</asp:UpdatePanel>
show/hide this revision's text 1

You would make a new PostBack trigger inside your updatepanel that is set to the ID of your button.

example:

<Triggers>
    <asp:PostBackTrigger ControlID="Button1" />
</Triggers>

This would go inside your UpdatePanel as another component aside from your content template.