Posted on: 2/24/2015 10:06:53 PM | Views : 471

Hi,
I want to insert gridview value into database table. Gridview has a memo column where user can write a memo. I want to only insert values or rows of a grid view where memo is filled out.
i tried this but giving me an error:
string col1 = GridView1.Rows[i].Cells[2].Text.ToString();
 string date = GridView1.Rows[i].Cells[3].Text.ToString();
string col3= GridView1.Rows[i].Cells[4].Text.ToString();
Go to the complete details ...