如何通过datagridview更新数据表值,这些值将存储在excel表中......以便下次加载excel文件时在datagridview中更新更改
问问题
123 次
1 回答
0
如果您正在谈论“从 GridView 获取数据并将该数据存储在 asp.net 中的 DataTable 中”,那么试试这个
DataTable yourDT = new DataTable();
yourDT.Columns.Add("content");
// Add your columns here
foreach (GridViewRow row in gvParent.Rows)
{
string Content = row.Cells[0].Text; // If you are using databound columns
string ContentFromLabel = ((Label)row.Cells[0].FindControl("YourLabel")).Text;// If you are using Template column
// get more columns like this that you have added
yourDT.Rows.Add(new object[] { Content, .... other data });
}
于 2012-06-23T07:59:19.863 回答