ListView::EnablePersistedSelection Property
Gets or sets a value that indicates whether row selection persists when a user pages through data in a data-bound control.
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
public: property bool EnablePersistedSelection { virtual bool get(); virtual void set(bool value); }
Property Value
Type: System::Booleantrue if row selection persists; otherwise, false. The default is false.
You can specify how selected rows are persisted when the ListView control is in paging mode. By default, row selection is based on row index. The same row (for example, the third row) is selected on each page. Alternatively, you can enable persistence based on the data key of the selected row. In that case, if you select row 3 on page 1 and you move to page 2, no row is selected on page 2. If you move back to page 1, row 3 is still selected. To enable this functionality, set this property to true.
Note |
|---|
In versions 2.0, 3.0, and 3.5 of ASP.NET, row selection was based only on row index. By default, row selection in ASP.NET 4 is based on index for backward compatibility. |
Available since 4.0
