Hello all,
I'm pretty lost, after a few days of trying to explore this issue.
I am building a dynamic form from codebehind, in the CreateChildControls() function.
protected override void CreateChildControls()         {             base.CreateChildControls();             CreateDynamicForm(formStatus, app_Code, formID, 0);             ChildControlsCreated = true;    the form is pretty complicated and I'm adding different types of controls according to different rules.
I am also using the following functions to save/load the viewstate:
protected override object SaveViewState()       ...

Go to the complete details ...