I have an update panel in a cell for each row within a gridview. The user clicks a link button from this update panel to display (using window.open()) a popup. Action is taken in that popup that updates the data contained within the aforementioned update panel. I want to trigger an update only for that update panel when the popup is closed.
What is the best way to do this? I'm researching capturing the window.close event and somehow passing a value that indicates where the popup was called from and then calling a postback for that update panel in javascript. If it makes a difference (in the least it will - ugh - in my javascript code), I am using a master page and only coding for IE.
Found this: http://forums.asp.net/p/1166328/1941797.aspx which uses the window.opener.document... Again, using a master page complicates matters.