I am on MyPage.aspx?questionNumber=1 and I am navigating to MyPage.aspx?questionNumber=2. I am using this code create the navigation between the two:
EwfUiStatics.SetContentFootActions( new ActionButtonSetup( "Next",
EwfLink.Create(
new Info( es.info, new OptionalParameterPackage { QuestionNumber = info.QuestionNumber + 1 } ),
new ButtonActionControlStyle() ) ) );
Notice I am using "new Info" and re-using the entity's info object. Maybe I should be using GetInfo or something else, instead.
When I get to the next question, I am scrolled halfway down the page. I want to be at the top. How do I force the scroll position to be cleared (or more generally, how do I specify the info object so that I don't have undesired carry-over from the previous page)?