DataBoundControl.PerformSelect Method

Note: This method is new in the .NET Framework version 2.0.

Retrieves data from the associated data source.

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

protected:
virtual void PerformSelect () override
protected void PerformSelect ()
protected override function PerformSelect ()

The PerformDataBinding method is called after data is retrieved to bind data to elements of the data-bound control. Derived types override this method to retrieve data only if the default implementation is not adequate. Typically, it is sufficient to provide a DataSourceViewSelectCallback delegate that performs any custom data work, rather than implementing the PerformDataBinding method.

The following code example demonstrates how to override the PerformSelect method to retrieve data from an associated data source using the GetData method and bind it to the elements of the control. This code example is part of a larger example provided for the DataBoundControl class.

No code example is currently available or this language may not be supported.

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

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

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: