I want to update a row in grid view using Bound column
my code is like this :::But it does`nt work
int iRowIndex = e.RowIndex;
string sOrderNo = GridView1.Rows[iRowIndex].Cells[1].Text;
string sOrdeDate = GridView1.Rows[iRowIndex].Cells[2].Text.ToString( ); it does`nt gives us value of cell???????
my code is like this :::But it does`nt work
int iRowIndex = e.RowIndex;
string sOrderNo = GridView1.Rows[iRowIndex].Cells[1].Text;
string sOrdeDate = GridView1.Rows[iRowIndex].Cells[2].Text.ToString( ); it does`nt gives us value of cell???????
Comment