반응형
DataRow myRow;
myRow = dbrec.Tables[0].NewRow();
// Then add the new row to the collection.
myRow[dbrec.Tables[0].Columns[0].ColumnName] = 0;
myRow[dbrec.Tables[0].Columns[2].ColumnName] = "전체";
dbrec.Tables[0].Rows.Add(myRow);
반응형