Here's the scenario:
Seems like a typical AJAX scenario where some ajax setting is not set correctly but, in this case, I have no idea how I would setup ajax to update the necessary controls when OnNavigate fires. Not even sure if I understand why ajax settings would be an issue. I mean, we're talking about the initial page load. Why wouldn't the controls that I'm clearly setting to certain values actually show those values on screen?
- MasterPage being used with RadAjaxManager and ScriptManager, the EnableHistory property of ScriptManager set to "true".
- Page inheriting master has ScriptManagerProxy where OnNavigate event is being handled to read when user clicks 'Back' button.
- Page has different buttons that cause ajax postbacks where I'm grabbing important info and using ScriptManager.AddHistoryPoint to maintain those values.
- When user navigates back to my page, the OnNavigate fires and all my important info is there in the HistoryEventArgs.State. I manually call to update form controls to account for that important info and, even though method calls appear to run successfully, form controls are not actually updated.
Seems like a typical AJAX scenario where some ajax setting is not set correctly but, in this case, I have no idea how I would setup ajax to update the necessary controls when OnNavigate fires. Not even sure if I understand why ajax settings would be an issue. I mean, we're talking about the initial page load. Why wouldn't the controls that I'm clearly setting to certain values actually show those values on screen?