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.
|
1
|
|
|
|
|
|
Please check the UpdateMode property of your update panel. The content of an UpdatePanel control is updated in the following circumstances:
|
||
|
|
|
|
You need to set the UpdatePanels' UpdateModes to Conditional, so that they only respond to events from controls within them. |
||||||
|
