One Update Panel vs. Multiple Update Panels
Posted
by mattruma
on Stack Overflow
See other posts from Stack Overflow
or by mattruma
Published on 2008-09-16T13:58:43Z
Indexed on
2010/04/16
3:03 UTC
Read the original article
Hit count: 453
I have an ASP.NET web page that displays a variety of fields that need to be updated best on certain conditions, button clicks and so on. We've implemented AJAX, using the ASP.NET Update Panel to avoid visible postbacks.
Originally there was only one area that needed this ability ... that soon expanded to other fields. Now my web page has multiple UpdatePanels.
I am wondering if it would be best to just wrap the entire form in a single UpdatePanel, or keep the individual UpdatePanels.
What are the best practices for using the ASP.NET UpdatePanel?
© Stack Overflow or respective owner