Hi All,
I have an aspx page where I have 5 UpdatePanels in which I am loading 5 different user controls dynamically. Each UpdatePanel has a different trigger and UpdateMode set to Conditional. When a user clicks on a Button inside of the 1st UpdatePanel, I know I will need to load the contents again in Page_Load. However, how do I know which UpdatePanel the request came from? If the Button clicked was inside UpdatePanel3, I want to LoadControl again inside UpdatePanel3 only and not inside all other UpdatePanels on the page.
Is there any way to find out which particular UpdatePanel is updating?
TIA,
WebPrgmer.