How to control which JavaScript gets run after UpdatePanel partial postback endRequest? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T13:38:01Z http://stackoverflow.com/feeds/question/899761 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/899761/how-to-control-which-javascript-gets-run-after-updatepanel-partial-postback-endre 5 How to control which JavaScript gets run after UpdatePanel partial postback endRequest? Mark 2009-05-22T20:11:26Z 2009-05-22T23:02:22Z <p>I know I can hook into the client side events to run JavaScript after every partial postback; however, I want to do something like this:</p> <pre><code>protected void FooClicked(object sender, EventArgs e) { ClientScript.RegisterStartupScript(GetType(), "msg", "showMsg('Foo clicked');",true); } </code></pre> <p>I know I could totally hack it with hidden fields and run something after <em>every</em> postback, but there should be a pretty straightfoward way to in a similar fashion to this.</p> http://stackoverflow.com/questions/899761/how-to-control-which-javascript-gets-run-after-updatepanel-partial-postback-endre/900362#900362 4 Answer by Rex M for How to control which JavaScript gets run after UpdatePanel partial postback endRequest? Rex M 2009-05-22T23:02:22Z 2009-05-22T23:02:22Z <p>The specific code sample you are describing does not work with partial post-backs, since <code>ClientScript.RegisterStartupScript()</code> writes JS to the page during the output construction phase of the request lifecycle; whereas a partial postback only updates a selected portion of the page via JavaScript (even though the markup for the entire page, including your startup script, is generated on the server).</p> <p>To closely mimic what you are describing, you ought to include a Literal control inside your UpdatePanel, and during partial postback set the Text property of the content panel to the script you wish to run:</p> <pre><code>myLiteral.Text = "&lt;script type=\"JavaScript\"&gt;doStuff();&lt;/script&gt;"; </code></pre> <p>IMO, a more proper way is to use the <a href="http://msdn.microsoft.com/en-us/library/bb398976.aspx" rel="nofollow">client-side API for async postbacks</a> to register an event handler to run when the postback completes:</p> <pre><code>function endRequestHandler(sender, args) { doStuff(); } Sys.WebForms.PageRequestManager.getInstance().add_endRequest(endRequestHandler); </code></pre> <p>If you need to pass information which was generated during the postback into the handler, you can pass that via hidden fields and grab that from the DOM in your client-side handler.</p>