Hi Guy's
i want to Gridview values by Columname not Index Wise . .
i am using this
GridViewRow row = gv1.SelectedRow;
txtfoodshopname.Text = row.Cells[5].Text;
but i want to this . .
GridViewRow row = gv1.SelectedRow;
txthopname.Text = row.Cells["Shopname"].Text;
Advised it . . .
Best Regard's
Prabhakar