I might not have been clear in what I was asking... Say for example that one of the user controls on the page sets and stores values that are needed either on the page itself, or in another control. If you try to retrieve those values during the Page_Load of the page, the control is set to Nothing, so I can't get anything from it until, say, the PreRender event.
If I have one control setting/storing values, and another using those values to perform an action, should they both bet placed in a 3rd user control that is then placed on the page, and the PreRender event used there for the code logic?
|