This documentation is archived and is not being maintained.

ListViewPagedDataSource::Count Property

Gets the number of items that will be used from the data source for the current page.

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

public:
virtual property int Count {
	int get () sealed;
}

Property Value

Type: System::Int32
The number of items that will be used from the data source for the current page.

Implements

ICollection::Count

Use the Count property to determine the number of items that will be used from the data source. The value returned is determined by the following criteria:

  • If the current page is not the last page and the MaximumRows property is set to a value that is greater than or equal to 0, the value of the MaximumRows property is returned.

  • If the current page is not the last page and the MaximumRows property is set to a value that is less than 0, the value of the DataSourceCount property is subtracted from the value of the StartRowIndex property before it is returned.

  • If the current page is the last page, the value of the DataSourceCount property is subtracted from the value of the StartRowIndex property before it is returned.

  • If the DataSource property is nullptr, 0 is returned.

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

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
Show: