Ajax UpdatePanel problems

  • Thread starter Thread starter Gibble
  • Start date Start date
G

Gibble

Hi,

I have a page that contains an updatepanel with two nested
updatepanels. No matter what I did, they were all updating. So I
searched around online for a sample to compare with, so I could
hopefully see what I was doing wrong. I found this (http://
geekswithblogs.net/ranganh/archive/2007/05/16/112525.aspx). and
tested it...and no matter what I clicked on, all the panels
refreshed!!!

Help! I need my nested updatepanels to only update themselves.

Thank you,

Chad
 
I think you need to do the following: Set UpdateMode to Conditional, set
ChildrenAsTriggers to false, then, using the <Triggers> section, add async
triggers for the controls you want to fire async postbacks.
 
Back
Top