ASP.NET and AJAX: Complete postback with a asp:Button inside an UpdatePanel - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T17:38:50Z http://stackoverflow.com/feeds/question/862738 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/862738/asp-net-and-ajax-complete-postback-with-a-aspbutton-inside-an-updatepanel 2 ASP.NET and AJAX: Complete postback with a asp:Button inside an UpdatePanel VansFannel 2009-05-14T11:04:10Z 2009-05-14T11:17:18Z <p>Hi!</p> <p>This is my aspx code:</p> <pre><code>&lt;asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional" RenderMode="Inline" ChildrenAsTriggers="False"&gt; &lt;ContentTemplate&gt; &lt;asp:Button ID="Save" runat="server" Text="Save" onclick="Save_Click" CssClass="boton" /&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; </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#862757 5 Answer by TheTXI for ASP.NET and AJAX: Complete postback with a asp:Button inside an UpdatePanel TheTXI 2009-05-14T11:09:02Z 2009-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>&lt;Triggers&gt; &lt;asp:PostBackTrigger ControlID="Button1" /&gt; &lt;/Triggers&gt; </code></pre> <p>This would go inside your UpdatePanel as another component aside from your content template.</p> <p>Like this:</p> <pre><code>&lt;asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional" RenderMode="Inline" ChildrenAsTriggers="False"&gt; &lt;Triggers&gt; &lt;asp:PostBackTrigger ControlID="Save" /&gt; &lt;/Triggers&gt; &lt;ContentTemplate&gt; &lt;asp:Button ID="Save" runat="server" Text="Save" onclick="Save_Click" CssClass="boton" /&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; </code></pre>