How can I access a value in a GridView, in this case i have a target_date in there and would like to get that value and convert it to string. Here is what I have:
foreach (GridViewRow gr in GridView1.Rows)
{
CheckBox cb = (CheckBox)gr.FindControl("chkItem");
if (cb.Checked)
{
string strTargetDate = "???"; // TODO
}
}