Please let other users know how useful this tip is by rating it below. Do you have a tip or code of your own you'd like to share? Submit it here.
Within code behind, how do you set the value of of a DataField? This example sets the columns set by the constants COL_1 & COL_2 to refer to data columns COLUMN_1 & COLUMN_2.
Dim xCol As BoundColumn
xCol = CType(grdData.Columns(COL_1),
System.Web.UI.WebControls.BoundColumn)
xCol .DataField = "COLUMN_1"
xCol = CType(grdData.Columns(COL_2),
System.Web.UI.WebControls.BoundColumn)
xCol .DataField = "COLUMN_2"This was first published in February 2004