its .net 2.0 here, not MVC, and im crap at asp forms
.So yeah, ive got a page with user controls on it. When i click on something in the page, i want to load the usercontrol based on a parameter from the page.Problem is i cant do it.In my page's FaultTree_Clicked, i get the value, then ive tried a variety of things:

- I tried exposing a property on thechild user control to set the value, which i set in FaultTree_Clicked,it gets forgotten.
- I tried saving it toSession["mykey"], and loadingSession["mykey"] in the control'sPage_init... the value is blank.
- I tried saving it toViewState["mykey"], and loadingViewState["mykey"] in the control'sPage_init... the value is blank.