On edit event, you can get the value of each cell of the row you just click on. You can put all of them in 1 string if you like.
John
protected void ItemsGrid_Edit(object sender,
DataGridCommandEventArgs e)
{
strCustomerID.Text = e.Item.Cells[1].Text ;
strLastName.Text = e.Item.Cells[2].Text ;
strFirstName.Text = e.Item.Cells[3].Text
}
}
|