ObjectDataSourceView.DataObjectTypeName Property
.NET Framework 3.0
Gets or sets the name of a class that the ObjectDataSource control uses for a parameter in a data operation. The ObjectDataSource control uses the specified class instead of the Parameter objects that are in the various parameters collections.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @property */ public String get_DataObjectTypeName () /** @property */ public void set_DataObjectTypeName (String value)
public function get DataObjectTypeName () : String public function set DataObjectTypeName (value : String)
Not applicable.
Property Value
A partially or fully qualified class name that identifies the type of the object that the ObjectDataSource can use as a parameter for a Insert, Update, or Delete operation. The default is an empty string ("").Instead of specifying several parameters that are passed to the Select, Update, Insert, and Delete methods, you can create one object that aggregates several items. This one object is passed to the methods, instead of several parameters. For more information see ObjectDataSource.DataObjectTypeName.
Community Additions
ADD
Show: