Hi,
In follow up, another customer was able to provide an exported form definition that had a multi page form with the same scroll problem as you reported, and I was able to come up with a solution. There will be a setting in the next release of Form Wizard Pro to force scrolling the page back to the top on each submission.
You can also solve this today in your copy by editing the file /FormWizard/FormWizardModule.ascx with a text editor.
Put this just inside the <portal:InnerBodyPanel and just above the <asp:UpdatePanel
<script type="text/javascript">
function formWizScrollTop() {
window.document.body.scrollTop = 0;
window.document.documentElement.scrollTop = 0;
}
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_endRequest(formWizScrollTop);
</script>
Hope that helps,
Joe