博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
gridview单元格合并解决方法
阅读量:6156 次
发布时间:2019-06-21

本文共 997 字,大约阅读时间需要 3 分钟。

先上效果图!

实现代码!

1    protected void Page_Load(object sender, EventArgs e) 2     { 3 //... 4         GridView1.DataSource = dt; 5         GridView1.DataBind(); 6         GroupName(0); 7         GroupName(1); 8         GroupName(3); 9         GroupSex();10     }11     public void GroupName(int col)12     {13         TableCell oldName = GridView1.Rows[0].Cells[col];14         for (int i = 1; i < GridView1.Rows.Count; i++)15         {16             TableCell Name = GridView1.Rows[i].Cells[col];17             if (oldName.Text == Name.Text)18             {19                 Name.Visible = false;20                 if (oldName.RowSpan == 0)21                 {22                     oldName.RowSpan = 1;23                 }24                 oldName.RowSpan++;25                 oldName.VerticalAlign = VerticalAlign.Middle;26             }27             else28             {29                 oldName = Name;30             }31         }32     }

 

转载于:https://www.cnblogs.com/liudabao123/p/7264434.html

你可能感兴趣的文章
jqgrid滚动条宽度/列显示不全问题
查看>>
在mac OS10.10下安装 cocoapods遇到的一些问题
查看>>
css技巧
查看>>
Tyvj 1728 普通平衡树
查看>>
javascript性能优化
查看>>
多路归并排序之败者树
查看>>
java连接MySql数据库
查看>>
转:Vue keep-alive实践总结
查看>>
深入python的set和dict
查看>>
C++ 11 lambda
查看>>
Android JSON数据解析
查看>>
DEV实现日期时间效果
查看>>
java注解【转】
查看>>
centos 下安装g++
查看>>
下一步工作分配
查看>>
Response. AppendHeader使用大全及文件下载.net函数使用注意点(转载)
查看>>
Wait Functions
查看>>
jQuery最佳实践
查看>>
centos64i386下apache 403没有权限访问。
查看>>
jquery用法大全
查看>>