Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Could you not just call the <code>Update</code> method of the "OutsidePanel" <a href="http://msdn.microsoft.com/en-gb/library/system.web.ui.updatepanel.aspx" rel="nofollow noreferrer">UpdatePanel</a> on the server when the <code>Imagebutton</code> in "InsidePanel" causes a postback? Or alternatively, set up <code>ImageButton</code> click event as a trigger for "OutsidePanel"</p> <p>According to <a href="http://msdn.microsoft.com/en-gb/library/system.web.ui.updatepanel.aspx" rel="nofollow noreferrer">MSDN</a></p> <blockquote> <p>If the UpdateMode property is set to Conditional, the UpdatePanel control's content is updated in the following circumstances:</p> <ul> <li><p>When you call the Update method of the UpdatePanel control explicitly.</p></li> <li><p>When the UpdatePanel control is nested inside another UpdatePanel control, and the parent panel is updated.</p></li> <li><p>When a postback is caused by a control that is defined as a trigger by using the Triggers property of the UpdatePanel control. In this scenario, the control explicitly triggers an update of the panel content. The control can be either inside or outside the UpdatePanel control that the trigger is associated with.</p></li> <li><p>When the ChildrenAsTriggers property is set to true and a child control of the UpdatePanel control causes a postback. Child controls of nested UpdatePanel controls do not cause an update to the outer UpdatePanel control unless they are explicitly defined as triggers.</p></li> </ul> </blockquote>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload