Here's a fun problem. The page in question is wizard like page. here's the scenario-
- User clicks on a link button to get to step 2 of the wizard. (The post back can't be avoided. URL based navigation isn't an option.)
- User clicks on a radio button/link button/any control that requires a postback for client-server interaction.
- The page reloads as if nothing happens.
- User repeats step 2. Things work fine.
What I do is this -
I have just one page for all steps of the wizard. Based on the step, the appropiate control is loaded into the page. This control is added to a placeholder control in the OnLoad event. Doing so in OnInit or OnPreRender doesn't work. This step of adding introduces the odd behaviour I've described above.
Any ideas?