Retrieve values from a dynamic control

UcTuK

New Member
I am trying to fix a problem with an application that uses Page.LoadControl to load a control and collect data from a user. Currently on a postback, the Page_Init method reloads the control, and then a button click event iterates over the Page.Controls collection to save the data before redirecting the user to another page. The extra load is causing a delay navigating between pages in the application. Is there any way to retrieve the values from a dynamically created control collection without reloading the entire control tree?
 
Back
Top