We are dynamically loading a RadTabStrip's Multipage with a web user control when the tab is clicked.
The tab contains the user's information that the should be able to change. For example, email, phone number.
In a normal ASPX page, I would test for IsPostBack = false. If it is then I pre-load the user's data. This way, when the user submits their changed data, it is not overwritten by postback doing another data load.
When using the RadTab environment, IsPostBack is always true. Thus I can't tell if this is a first visit to load the user's data or if they clicked submit.
How can I get around this?