I have a placeholder inside updatepanel, thats also inside a placeholder and an updatepanel. However, according to my tests this layout shouldnt matter on this error. My placeholder always have visible set to false, even if I try to set it to true. I have tried to step thought the code, and the code for setting the placeholder to true is running. Yet, it doesnt set it to true.

myPlaceholder.Visible = true;

if(myPlaceholder.Visible)  
//Do stuff inside placeholder

myUpdatePanel.Update();

This only happens on the first load tho, on postbacks myPlaceholder visible sets to true. Its probably something else in the web application thats wrong and creates this error, but its so big I dont know where to start looking. My hope is that someone had a similar problem that can point me to the right direction.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Is parent of myPlaceholder control visible ?

link|improve this answer
It seems to be a connection. I set the parent placeholder to visible first after the myPlaceholder is supposed to be set to true. I did try this on a test page and then it worked. But now i tried to set the parent placeholder to visible just before setting myPlaceholder to visible and now it shows. – Jimmy Mattsson Feb 23 '11 at 11:55
feedback

Your Answer

 
or
required, but never shown

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