vote up 1 vote down star
1

I have two AJAX UpdatePanels on my ASP.NET 2.0 web form. When I clic the LinkkButton which is on the UpdatePanel1, UpdatePanel1 and UpdatePanel2 are updating. How can I Update only the first UpdatePanel? Thanks.

flag

80% accept rate

2 Answers

vote up 1 vote down check

Please check the UpdateMode property of your update panel.

The content of an UpdatePanel control is updated in the following circumstances:

  • If the UpdateMode property is set to Always, the UpdatePanel control's content is updated on every postback that originates from anywhere on the page. This includes asynchronous postbacks from controls that are inside other UpdatePanel controls and postbacks from controls that are not inside UpdatePanel controls.
  • If the UpdatePanel control is nested inside another UpdatePanel control and the parent update panel is updated.
  • If the UpdateMode property is set to Conditional, and one of the following conditions occurs:
    • You call the Update method of the UpdatePanel control explicitly.
    • The 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 defines the trigger.
    • The ChildrenAsTriggers property is set to true and a child control of the UpdatePanel control causes a postback. A child control of a nested UpdatePanel control does not cause an update to the outer UpdatePanel control unless it is explicitly defined as a trigger.
link|flag
vote up 1 vote down

You need to set the UpdatePanels' UpdateModes to Conditional, so that they only respond to events from controls within them.

link|flag
copypasta wins again – phoebus Sep 23 at 8:09
1  
@phoebus : Since your answer is right +1 for it. And about your comment of copy paste please check this meta question posted by me and answered by Chrisf.(meta.stackoverflow.com/questions/20692/…) – Mahin Sep 29 at 11:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.