Gets a collection of System.Web.UI.WebControls.DetailsViewRow objects that represent the data rows in a System.Web.UI.WebControls.DetailsView control.
Documentation for this section has not yet been entered.
The DetailsView.Rows property (collection) is used to store the data rows in a System.Web.UI.WebControls.DetailsView control. The System.Web.UI.WebControls.DetailsView control automatically populates the DetailsView.Rows collection by creating a System.Web.UI.WebControls.DetailsViewRow object for each record in the data source and then adding the object to the collection. This property is commonly used to access a specific row in the control or to iterate though the entire collection of rows.
Only data rows are stored in the DetailsView.Rows collection. The System.Web.UI.WebControls.DetailsViewRow objects that represent the header, footer, and pager rows are not included in the collection.