Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 gridview 控件手动将行/插入添加到数据库中?
在将数据发送到 INSERT sql 查询之前,我需要先对用户输入执行一些计算。
有一种gridview.Insert()方法,但它不带任何参数。
gridview.Insert()
如何将来自文本框、下拉列表等的参数传递给它,然后运行 sql 查询?
在绑定之前尝试将其添加到数据表中:
DataRow dr = dt.NewRow(); // set dr fields here dt.Rows.Add(dr);