将数据放入 gridview 的第二行
我正在使用 foreach 循环将数据插入到 gridview 中,如下所示。
foreach (GridViewRow _row in grvbillDetail.Rows)
{
_row = text;
_row = text;
_row = int;
_row = int;
}
我怎样才能使一些数据打印在第一行,一些数据打印在第二行?
提前致谢!
I am using a foreach loop to insert data into a gridview such as this.
foreach (GridViewRow _row in grvbillDetail.Rows)
{
_row = text;
_row = text;
_row = int;
_row = int;
}
How can i make some of the data print on the first row and some print on the second row?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GridViewRow.RowIndex
是在此处访问行的关键。试试这个。
顺便说一句,如果您只想访问第一行和第二行,请执行以下操作
GridViewRow.RowIndex
is the key to access your rows here.Try this.
By the way, if you want to access only the first and second row, do something like this