GridViewRow.DataItem Property
.NET Framework 3.0
Gets the underlying data object to which the GridViewRow object is bound.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @property */ public Object get_DataItem () /** @property */ public void set_DataItem (Object value)
public function get DataItem () : Object public function set DataItem (value : Object)
Not applicable.
Property Value
An Object that represents the underlying data object to which the GridViewRow object is bound.Use the DataItem property to access the properties of the underlying data object to which the GridViewRow object is bound. The DataItem property is only available during and after the RowDataBound event of a GridView control.
Note: |
|---|
| This property applies only to data rows. |
| Topic | Location |
|---|---|
| How to: Set GridView Web Server Control Column Width Dynamically | Building ASP .NET Web Applications |
| How to: Set GridView Web Server Control Column Width Dynamically | Building ASP .NET Web Applications |
The following example demonstrates how to use the DataItem property to retrieve a field value. The value is then used to pre-select an item in a DropDownList control displayed when a row is in edit mode.
Community Additions
ADD
Show:
Note: