ObjectDataSource.ObjectDataSource(String, String) Constructor
.NET Framework 3.0
Initializes a new instance of the ObjectDataSource class with the specified type name and data retrieval method name.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public ObjectDataSource ( String typeName, String selectMethod )
public function ObjectDataSource ( typeName : String, selectMethod : String )
Not applicable.
Parameters
- typeName
The name of the class that the ObjectDataSource works with.
- selectMethod
The name of the method or function that the ObjectDataSource invokes to retrieve data.
The value of the typeName parameter can be a partially qualified type for code that is located in the Bin or App_Code directory or a fully qualified type name for code that is registered in the global assembly cache. If you use the global assembly cache, you must add the appropriate reference to the assemblies section of the Machine.config or Web.config configuration file.
Note: |
|---|
| If you are not familiar with the Data Access features in ASP.NET 2.0, you should read some of these topics before continuing: |
Community Additions
ADD
Show:
Note: