GridView判断本页的行数,添加空行

本文介绍了一段C#代码,用于判断GridView控件当前页面的行数,并在页脚添加足够的空行以填充剩余的空间。该方法适用于需要在GridView中保持每页行数一致的场景。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

判断本页的行数,添加空行
C# code
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->
protected void GrvCode_RowCreated(object sender, GridViewRowEventArgs e)
{
int num = 0;
num
= GrvCode.Rows.Count;
if (e.Row.RowType == DataControlRowType.Footer)
{
int left = GrvCode.PageSize - num;
int numCol = GrvCode.Rows[0].Cells.Count;
for(int i=0;i<left;i++)
{
GridViewRow row
=
new GridViewRow(-1,-1,DataControlRowType.EmptyDataRow,DataControlRowState.Normal);
for (int j = 0; j < numCol; j++)
{
TableCell cell
= new TableCell();
cell.Text
= "&nbsp";
row.Cells.Add(cell);
}
GrvCode.Controls[
0].Controls.AddAt(num+1+i,row);
}
}
}


代码需要整理下再用
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值