update-panel

Redirect the parent frame inside an UpdatePanel on PostBack

This is kind of a weird problem, but I have to create a search box for our site that will be iframed on another site. When the user clicks the search button, it needs to redirect the parent frame to our search results page. At the moment what I've done is to make the search button a postback trigger then registering a client script blo...

Does the page load event still fire if a control is inside an update panel?

I have a page with part of a listview control inside an update panel. When a button is clicked in the listview I modify some data and call this.databind to refresh the data. It appears that the page load event is still firing even though the control is inside an update panel. I am wondering why the page load event is firing? Is it due to...

multiple postback events in an update panel

I have an update panel containing several divs which utilize jquery ui's draggable. On drag stop i want to do a postback which only effects the update panel. This works fine, but before continuing down this road i was wondering if a second divs dragstop event occured during a previous divs postback would both postbacks be executed prope...