loadviewstate

LoadViewState not fired on my user control

I have a user control nested in a repeater. Inside my user control I have another repeater and in that I have a panel. I am trying to override the LoadViewState event of my user control and dynamically add controls to the panel. I want to do it in the LoadViewState so that the dynamic controls get added before the viewstate gets load...

Can I explicitly force asp.NET to re-load the ViewState data of any data-control?

Hi, I have a problem regarding to asp.net lifecylce hierarchy. Basically, I have one user control which has a GridView in it. And this GridView is dynamically generated based on a public property on the control (named Parameter in the simplified code below). Everything is fine when I insert this control in an aspx page, set its Parame...