I dynamically load a UserControl, with an updatepanel inside, into a placeHolder. When I click an button into UserControl, should refresh the updatepanel that there are in it, but refresh entire page and the user control disappears because the aspx page's Page_Load don't load anything if it's a postback. How I can fix it?

PD: sorry for my english

link|improve this question
feedback

3 Answers

Whenever a partial or full postback happen , Automatically all update() method of all updatepanels fire . For preventing such this behavior you need to set UpdateMode="Conditional" property . In this situation you need to specify asynchronous trigger Or ChildrenAsTriggers=true .

for preventing a dynamically loaded-usercontrol to be disappear ,It's good to save it in ViewState , Here is a tutorial and sample application

link|improve this answer
feedback

I think you'll need to reinject the control in page_load or pre_render. Dynamically created controls don't live through postback.

link|improve this answer
feedback

Make sure you are creating the control EVERY page request, regardless of GET/POST. Also, make sure you are giving it the same ID.

I like to override the CreateChildControls method.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.