DataSourceControl.System.Web.UI.IDataSource.GetView Method
.NET Framework 2.0
This method supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Gets the named DataSourceView object associated with the DataSourceControl control. Some data source controls support only one view, while others support more than one.
Namespace: System.Web.UIAssembly: System.Web (in system.web.dll)
private: virtual DataSourceView^ System.Web.UI.IDataSource.GetView ( String^ viewName ) sealed = IDataSource::GetView
Not applicable.
Parameters
- viewName
The name of the DataSourceView to retrieve. In data source controls that support only one view, such as SqlDataSource, this parameter is ignored.
Return Value
Returns the named DataSourceView associated with the DataSourceControl.The viewName parameter is ignored when this method is called on data source controls that support only one view, such as the SqlDataSource and AccessDataSource controls.
Note: |
|---|
|
The DataSourceControl class's default implementation, which is called by this interface method, returns a null reference (Nothing in Visual Basic). If you extend the DataSourceControl class, override the GetView method to return the specified DataSourceView object. |
Community Additions
ADD
Show:
Note: