Re : Enter the from textbox text to dispaly datagridview |
| Ashutosh Dhok replied to Dharma K at 05-Jul-08 06:38 |
Hi Dharma,
Firstly you have to assign dataset, datatable which have rows to dataview. So that the rows will generate for the gridview. After that assign value of Textbox or Label to gridview's perticular cell of any row.
GridView1[RowNumber, ColNumber].Value = Tebox1.Text;
Or
GridView1[RowNumber, ColNumber].Value = Label1.Tex
Regards Ashutosh |
|