|
|
Browse by Tags
All Tags » codebehind » detailsview
-
To access the data contained in a DetailsView Control named DetailsView1, do the following:
DetailsView1.Rows[x] where x is the number of the row you want to access. The row counts start at 0 so to access the first row you would do DetailsView1.Rows[0]
Then to access the data contained in an individual ...
|
|
|