拖曳在gridview中插入行

拖曳在gridview中插入行

本文介绍了拖曳在gridview中插入行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

任何更好的文本框中的插入行或gridview中的stright

any better insert row from textboxes or stright in gridview

推荐答案

DataTable Dt = (DataTable)(GridView1.DataSource);
 Dt.Rows.Add(Dt.NewRow());
 Dt.Rows[Dt.Rows.count-1]["ColName"]=txtProd.Text;
 Dt.Rows[Dt.Rows.count-1]["OtherColName"]=txtCatgeory.Text;
 Dt.Rows[Dt.Rows.count-1]["MyColumn"]=txtDescription.Text;
 Dt.AcceptChanges();

 GridView1.EditIndex = Dt.Rows.count-1;
 GridView1.DataSource = Dt;
 GridView1.DataBind();



这篇关于拖曳在gridview中插入行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-26 16:13