Preserve page line with Wizard

ImDaFrEaK

Well-known member
Joined
Jan 7, 2006
Messages
416
Location
California
Programming Experience
5-10
What is the simplest way to preserve the users location on a webpage during a postback.

I am using the Wizard on my page and for every post back the page starts back at the top. The user has to scroll down the page to get back the wizard again. I want the simplest way to preserve their location during each postback so that the user does not have to scroll up or down. Thanks for any help :)
 
Try code Page.MaintainScrollPositionOnPostBack = True or set the SmartNavigation attribute on Page directive.
 
Back
Top