Adding new row to datagrid
-
I have a datagrid which is populated in Page_Load.I want new record to be inserted in a new row in the datagrid with some user inputs at client end.how can I insert the new datagrid records to database with the new records?Give me the c# code Tirthadip Mukhopadhyay
-
I have a datagrid which is populated in Page_Load.I want new record to be inserted in a new row in the datagrid with some user inputs at client end.how can I insert the new datagrid records to database with the new records?Give me the c# code Tirthadip Mukhopadhyay
Map the datatble to the a userdefined table in the frontend and create a new row and insert the values inside the row. Then insert the row into the datatable in the required position. Then map the datatable to the datagrid... Naveen
-
I have a datagrid which is populated in Page_Load.I want new record to be inserted in a new row in the datagrid with some user inputs at client end.how can I insert the new datagrid records to database with the new records?Give me the c# code Tirthadip Mukhopadhyay
objdt = objdt.newrow Add Columns Insert the row at the required point in datatable and map the dattable to the datagrid...