How to Populate values of dropdown list in a datagrid in C#
I have three dropdown list and a textbox, when i click on the save button, all the selected values in the dropdown list and the value which is entered in the textbox by the user should be displayed in the data grid.
Ravish Verma Wednesday, July 01, 2009 5:54 AM
hello Ravish, If your datagrid is binded to dataSource, then add new item in datasource, otherwice Create new datagridviewRow and add it to datagridview. Refer link.