I am a bit stuck.
I have created a Web user control which renders a Question (I have a question domain object). This Web user control should render itself again for all Child questions of the current question.
Currently I am loading the child questions with LoadControl into the parent control. It works fine the child question controls do not keep viewstate. Nor do they trigger any proper postbacks.
What's the best way to load a web user control again within itself so that viewstate is properly preserved?
I am using VS2005 and ASP.NET 2.0