DynamicDataExtensions.EnablePersistedSelection(BaseDataBoundControl) 方法

定义

注意

Use the EnablePersistedSelection property on a databound control such as GridView or ListView.

使选定内容能够保留在支持选择和分页的数据控件中。

public:
[System::Runtime::CompilerServices::Extension]
 static void EnablePersistedSelection(System::Web::UI::WebControls::BaseDataBoundControl ^ dataBoundControl);
public static void EnablePersistedSelection (this System.Web.UI.WebControls.BaseDataBoundControl dataBoundControl);
[System.Obsolete("Use the EnablePersistedSelection property on a databound control such as GridView or ListView.")]
public static void EnablePersistedSelection (this System.Web.UI.WebControls.BaseDataBoundControl dataBoundControl);
static member EnablePersistedSelection : System.Web.UI.WebControls.BaseDataBoundControl -> unit
[<System.Obsolete("Use the EnablePersistedSelection property on a databound control such as GridView or ListView.")>]
static member EnablePersistedSelection : System.Web.UI.WebControls.BaseDataBoundControl -> unit
<Extension()>
Public Sub EnablePersistedSelection (dataBoundControl As BaseDataBoundControl)

参数

dataBoundControl
BaseDataBoundControl

数据绑定控件。

属性

注解

在扩展 BaseDataBoundControl 和支持选择、分页和排序的控件中,调用此方法使控件即使在所选行不可见时也能保留所选内容。 例如,如果用户选择一行,然后分页到另一页,或者如果用户对数据进行排序,则所选行将保持选中状态。 如果未调用此方法,则当用户进行页面或排序时,选择将丢失。

RegisterControl 方法调用 EnablePersistedSelection

适用于