.NET Framework Class Library
Page.MaintainScrollPositionOnPostBack Property

Note: This property is new in the .NET Framework version 2.0.

Gets or sets a value indicating whether to return the user to the same position in the client browser after postback.

Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)

Syntax

Visual Basic (Declaration)
Public Property MaintainScrollPositionOnPostBack As Boolean
Visual Basic (Usage)
Dim instance As Page
Dim value As Boolean

value = instance.MaintainScrollPositionOnPostBack

instance.MaintainScrollPositionOnPostBack = value
C#
public bool MaintainScrollPositionOnPostBack { get; set; }
C++
public:
property bool MaintainScrollPositionOnPostBack {
    bool get ();
    void set (bool value);
}
J#
/** @property */
public boolean get_MaintainScrollPositionOnPostBack ()

/** @property */
public void set_MaintainScrollPositionOnPostBack (boolean value)
JScript
public function get MaintainScrollPositionOnPostBack () : boolean

public function set MaintainScrollPositionOnPostBack (value : boolean)

Property Value

true if the client position should be maintained; otherwise, false.
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.

Platforms

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

Version Information

.NET Framework

Supported in: 2.0
See Also

Tags :


Page view tracker