ASP.NET and AJAX: Complete postback with a asp:Button inside an UpdatePanel - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T17:38:50Zhttp://stackoverflow.com/feeds/question/862738http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/862738/asp-net-and-ajax-complete-postback-with-a-aspbutton-inside-an-updatepanel2ASP.NET and AJAX: Complete postback with a asp:Button inside an UpdatePanelVansFannel2009-05-14T11:04:10Z2009-05-14T11:17:18Z
<p>Hi!</p>
<p>This is my aspx code:</p>
<pre><code><asp:UpdatePanel ID="UpdatePanel1" runat="server"
UpdateMode="Conditional" RenderMode="Inline" ChildrenAsTriggers="False">
<ContentTemplate>
<asp:Button ID="Save" runat="server" Text="Save"
onclick="Save_Click" CssClass="boton" />
</ContentTemplate>
</asp:UpdatePanel>
</code></pre>
<p>This button is on an updatepanel beacuse I need to enabled it in a partial postback.</p>
<p>I need that save button make a complete postback. How can I achieve this?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/862738/asp-net-and-ajax-complete-postback-with-a-aspbutton-inside-an-updatepanel/862757#8627575Answer by TheTXI for ASP.NET and AJAX: Complete postback with a asp:Button inside an UpdatePanelTheTXI2009-05-14T11:09:02Z2009-05-14T11:17:18Z<p>You would make a new PostBack trigger inside your updatepanel that is set to the ID of your button.</p>
<p>example:</p>
<pre><code><Triggers>
<asp:PostBackTrigger ControlID="Button1" />
</Triggers>
</code></pre>
<p>This would go inside your UpdatePanel as another component aside from your content template.</p>
<p>Like this:</p>
<pre><code><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>
</code></pre>