Page.MaintainScrollPositionOnPostBack Property

Definition

Gets or sets a value indicating whether to return the user to the same position in the client browser after postback. This property replaces the obsolete SmartNavigation property.

public:
 property bool MaintainScrollPositionOnPostBack { bool get(); void set(bool value); };
[System.ComponentModel.Browsable(false)]
public bool MaintainScrollPositionOnPostBack { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.MaintainScrollPositionOnPostBack : bool with get, set
Public Property MaintainScrollPositionOnPostBack As Boolean

Property Value

true if the client position should be maintained; otherwise, false.

Attributes

Remarks

When Web pages are posted back to the server, the user is returned to the top of the page. On long Web pages, this means that the user has to scroll the page back to the last position on the page.

When the MaintainScrollPositionOnPostBack property is set to true, the user is instead returned to the last position on the page.

You set the MaintainScrollPositionOnPostBack property in the @ Page directive.

Applies to