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
LoadViewState
isn't the appropriate place for adding child controls. For dynamically adding controls within a user control, you'll want to look at the CreateChildControls method.
It's not firing a LoadViewState
event because you need to save at least one value in the ViewState
to have the event fire.