3 out of 6566 rated this helpful - Rate this topic

Page.MaintainScrollPositionOnPostBack Property

Updated: June 2010

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.

Namespace:  System.Web.UI
Assembly:  System.Web (in System.Web.dll)
[BrowsableAttribute(false)]
public bool MaintainScrollPositionOnPostBack { get; set; }
<asp:Page MaintainScrollPositionOnPostBack="True|False" />

Property Value

Type: System.Boolean
true if the client position should be maintained; otherwise, false.

When Web pages are posted back to the server, by default the user is returned to the top of the page. On long Web pages, this means that after a postback the user might have to scroll back to the most recent position on the page.

When the MaintainScrollPositionOnPostback() property is set to true, the user is instead returned to the most recent position on the page.

You set the MaintainScrollPositionOnPostback() property in the @ Page directive.

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

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

.NET Framework

Supported in: 3.5, 3.0, 2.0

Date

History

Reason

June 2010

Explained that you set the property in the @ Page directive.

Customer feedback.

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
Page.MaintainScrollPositionOnPostBack Property
stupid Microsoft.Wasting my time to solve.even IE also cant work .i Better change to php . not asp.net
Does not work in other browsers.

Does not work in other browsers.
Better to implement the functionality thru Javascript

Error Occured during Compilation of the Code : Object reference not set to an instance of an object.

Dim instance As Page
Dim value AsBoolean

value = instance.MaintainScrollPositionOnPostBack

instance.MaintainScrollPositionOnPostBack = value

----------------------------------------------------------------

Dim instance As New Page

instead of

Dim instance As Page




Cross browser functionality of MaintainScrollPositionOnPostBack

Property works in IE6/IE7 for me while it fails at the same time in Google Chrome 0.2 and 0.3. So perhaps cross browser functionality of this property has not been completely and fully tested.
A little problem with MaintainScrollPositionOnPostback
This doesn't seem to always work when wordwrap is enabled in GridView columns; the position seems to be calculated as though no wordwrap were taking place.
MaintainScrollPositionOnPostBack

This property does not apply to controls (example ListBox) added to a User control. If the attribute is set in the page directive to where the User Control resides or in the Web.Config file it does not maintain the state of position after a full or partial postback.