This documentation is archived and is not being maintained.

ListViewPagedDataSource::AllowServerPaging Property

Gets or sets a value that indicates whether server-based paging is enabled.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web.Extensions (in System.Web.Extensions.dll)

public:
property bool AllowServerPaging {
	bool get ();
	void set (bool value);
}

Property Value

Type: System::Boolean
true if server-based paging is enabled; otherwise, false.

Use the AllowServerPaging property to specify whether server-based paging is enabled. If this property is set to true, the data source object performs server-based paging. Otherwise, the ListView control does UI-based paging. In UI-based paging, the ListView control requests all the records from the data source and uses only the ones for the current page.

.NET Framework

Supported in: 4, 3.5

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

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