HELP: UpdatePanel

  • Thread starter Thread starter Guramrit Singh
  • Start date Start date
G

Guramrit Singh

Hi Everybody,

I have a problem with UpdatePanelAnimationExtender. I have multiple update
panels each with a UpdatePanelAnimationExtender associated with it. I want
all my update panels mode to be conditional(i don't want to set it to
always). When 1 update panel updates the OnUpdating fires on all update
panels!

Or can I capture update events of updatepanel on client side.

Please Help me out
 
Hi

Update panel has a property called update mode. by default it's value
is always.
change it to conditional for all the update panel. Add trigger for
each update panel that require update on client .
in code behind file write a function to call UpdatePanel1.Update();
method for each update panel u want to refresh...

u might also check it out...

http://www.asp.net/ajax/documentation/live/mref/M_System_Web_UI_UpdatePanel_Update.aspx

Best of luck

-------
Munna

www.munna.shatkotha.com/blog
www.munna.shatkotha.com
www.shatkotha.com
 
Back
Top