How To Perform Client Side Action After Completion Of AJAX Postback Operation[ASP.NET 2.0]
While developing an ASP.NET 2.0 web application that uses <asp:UpdatePanel> control, we were required to perform a client side action (using JavaScript) after completion of Ajaxed post back. We achieved it by attaching an event handler method to the event _endRequest of PageRequestManager object. After completion of every post back ASP.NET automatically notifies all the …