I have a piece of javascript, which scrolls my multiline <asp:textbox> to the bottom line on each postback. This works just fine. However, when I wrap the textbox inside a <asp:updatepanel> for partial page postbacks, it no longer works. I suspect this is because the javascript is no longer being called during the partial page postback, so my question is: Where can I place the code so that it executes properly AFTER the partial page postback occurs?
Thanks!