本文介绍了在gridview中如何使用asp.net添加新行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在gridview中如下
产品编号产品名称Validtiy销售人员
P0001 Xanso 1年拉姆
然后我想在asp中添加另一行.net我怎么能用csharp。
Rgds,
Narasiman P.
In gridview as follows
Product ID Proudct Name Validtiy Sales person
P0001 Xanso 1 year Ram
then i want to add another row in asp.net for that how can i do using csharp.
Rgds,
Narasiman P.
推荐答案
GridViewRow rw = new GridViewRow(-1, -1, DataControlRowType.DataRow, DataControlRowState.Normal);
TableCell rowCell;
int colCount = GridView1.Columns.Count;
//if your not providing columns at design time in .aspx file
//then you need provide value for colCount manullay
//like below commented line
//int colCount = 3;
for (int i = 0; i < colCount; i++)
{
rowCell = new TableCell();
rowCell.Text = "celltext";
rw.Cells.Add(rowCell);
}
GridView1.Controls[0].Controls.Add(rw);
这篇关于在gridview中如何使用asp.net添加新行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!