GridView的数据行的行合并,GridView实现合计数据项

2024-02-07 08:58

本文主要是介绍GridView的数据行的行合并,GridView实现合计数据项,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

以下是页面的HTML代码:
<% @ Page Language="C#" AutoEventWireup="true" StylesheetTheme="Default" Theme="Default"
    CodeFile
="InsuranceList.aspx.cs" Inherits="Employee_InsuranceList" 
%>

<! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
< html  xmlns ="http://www.w3.org/1999/xhtml" >
< head  runat ="server" >
    
< title > 员工保险信息 </ title >
</ head >
< body >
    
< form  id ="form1"  runat ="server" >
        
< fieldset >
            
< legend > 员工保险管理 </ legend >
            
< div  id ="tabsF" >
                
< ul >
                    
< li >< href ="AddInsurance.aspx"  title ="添加员工保险" >< span > 添加员工保险 </ span ></ a ></ li >
                    
< li >< href ="../Default.aspx"  title ="返回主页面" >< span > 返回 </ span ></ a ></ li >
                
</ ul >
            
</ div >
        
</ fieldset >
        
< fieldset >
            
< legend > 保险信息 </ legend > 开始年份: < asp:TextBox  ID ="txtBDate"  runat ="server"   />
            
< asp:RequiredFieldValidator  ID ="RequiredFieldValidator1"  runat ="server"  ControlToValidate ="txtBDate"
                ErrorMessage
="开始年份不能为空"  Display ="Dynamic" > * </ asp:RequiredFieldValidator >
            
< asp:RegularExpressionValidator  ID ="RegularExpressionValidator1"  runat ="server"  ControlToValidate ="txtBDate"
                Display
="Dynamic"  ErrorMessage ="开始年份格式不正确"  ValidationExpression ="^[0-9]*[1-9][0-9]*$" > * </ asp:RegularExpressionValidator > 结束年份:
            
< asp:TextBox  ID ="txtEndDate"  runat ="server" ></ asp:TextBox >
            
< asp:RequiredFieldValidator  ID ="RequiredFieldValidator2"  runat ="server"  ControlToValidate ="txtEndDate"
                ErrorMessage
="结束年份不能为空"  Display ="Dynamic" > * </ asp:RequiredFieldValidator >
            
< asp:RegularExpressionValidator  ID ="RegularExpressionValidator2"  runat ="server"  ControlToValidate ="txtEndDate"
                Display
="Dynamic"  ErrorMessage ="结束年份格式不正确"  ValidationExpression ="^[0-9]*[1-9][0-9]*$" > * </ asp:RegularExpressionValidator >
            
< asp:CompareValidator  ID ="CompareValidator1"  runat ="server"  ControlToCompare ="txtEndDate"
                ControlToValidate
="txtBDate"  ErrorMessage ="开始年份不能大于结束年份"  Operator ="LessThanEqual"
                Type
="Integer"  Display ="Dynamic" > * </ asp:CompareValidator >
            
< asp:Button  ID ="btnSel"  runat ="server"  Text ="开始查询"  OnClick ="btnSel_Click"   />
            
< asp:GridView  ID ="gvInsurance"  runat ="server"  SkinID ="Default_GridView"   AutoGenerateColumns ="False"
                OnDataBound
="gvInsurance_DataBound"  OnRowDataBound ="gvInsurance_RowDataBound"  CaptionAlign ="Left"  OnRowDeleting ="gvInsurance_RowDeleting"  OnRowEditing ="gvInsurance_RowEditing"  ShowFooter ="True" >
                
< Columns >
                    
< asp:BoundField  DataField ="ComName"  HeaderText ="公司名称"   />
                    
< asp:BoundField  DataField ="DepartName"  HeaderText ="部门名称"   />
                    
< asp:BoundField  DataField ="EmpName"  HeaderText ="员工姓名"   />
                    
< asp:BoundField  DataField ="InsYear"  HeaderText ="保险年度"   />
                    
< asp:BoundField  DataField ="Endowment"  DataFormatString ="{0:C}"  HeaderText ="养老保险"
                        HtmlEncode
="False" >
                        
< ItemStyle  HorizontalAlign ="Right"   />
                    
</ asp:BoundField >
                    
< asp:BoundField  DataField ="Medicare"  DataFormatString ="{0:C}"  HeaderText ="医疗保险"  HtmlEncode ="False" >
                        
< ItemStyle  HorizontalAlign ="Right"   />
                    
</ asp:BoundField >
                    
< asp:BoundField  DataField ="Unemployed"  DataFormatString ="{0:C}"  HeaderText ="失业保险"
                        HtmlEncode
="False" >
                        
< ItemStyle  HorizontalAlign ="Right"   />
                    
</ asp:BoundField >
                    
< asp:BoundField  DataField ="Fund"  DataFormatString ="{0:C}"  HeaderText ="公积金"  HtmlEncode ="False" >
                        
< ItemStyle  HorizontalAlign ="Right"   />
                    
</ asp:BoundField >
                    
< asp:BoundField  DataField ="EmpCode"  HeaderText ="员工编号"   />
                    
< asp:CommandField  ShowEditButton ="True"   />
                    
< asp:CommandField  ShowDeleteButton ="True"   />
                
</ Columns >
            
</ asp:GridView >
        
</ fieldset >
        
< asp:ValidationSummary  ID ="ValidationSummary1"  runat ="server"  ShowMessageBox ="True"
            ShowSummary
="False"   />
    
</ form >
</ body >
</ html >

 实现数据行合并是在GridView的DataBind事件进行书写:
代码如下:

protected   void  gvInsurance_DataBound( object  sender, EventArgs e)
    
{
        GroupRows(
this.gvInsurance, 0);
        GroupRows(
this.gvInsurance, 1);
    }

    
public   static   void  GroupRows(GridView GridView1,  int  cellNum)
    
{
        
int i = 0, rowSpanNum = 1;
        
while (i < GridView1.Rows.Count - 1)
        
{
            GridViewRow gvr 
= GridView1.Rows[i];
            
for (++i; i < GridView1.Rows.Count; i++)
            
{
                GridViewRow gvrNext 
= GridView1.Rows[i];
                
if (gvr.Cells[cellNum].Text == gvrNext.Cells[cellNum].Text)
                
{
                    gvrNext.Cells[cellNum].Visible 
= false;
                    rowSpanNum
++;
                }

                
else
                
{
                    gvr.Cells[cellNum].RowSpan 
= rowSpanNum;
                    rowSpanNum 
= 1;
                    
break;
                }


                
if (i == GridView1.Rows.Count - 1)
                
{
                    gvr.Cells[cellNum].RowSpan 
= rowSpanNum;
                }

            }

        }

    }
书写实现数据列合计是在RowDataBind事件里面进行书写,代码如下:
protected   void  gvInsurance_RowDataBound( object  sender, GridViewRowEventArgs e)
    
{
        
if (e.Row.RowType == DataControlRowType.DataRow)
        
{
            e.Row.Attributes.Add(
"onmouseover""e=this.style.backgroundColor; this.style.backgroundColor='linen'");
            e.Row.Attributes.Add(
"onmouseout""this.style.backgroundColor=e");
        }

        
//sum info
        if (e.Row.RowType == DataControlRowType.Footer)
        
{
            
//unite cell
            e.Row.Cells[0].ColumnSpan = 11;
            
//visual 10 cell 
            for (int i = 1; i < 11; i++)
            
{
                e.Row.Cells[i].Visible 
= false;
            }

            
//get every unite cell value
            TableCell cellEndowment = e.Row.Cells[4];
            TableCell cellMedicare 
= e.Row.Cells[5];
            TableCell cellUnemployed
=e.Row.Cells[6];
            TableCell cellFund
=e.Row.Cells[7];
            TableCell cellSum 
= e.Row.Cells[8];
            
//define variable
            double endowment,medicare,unemployee,fund;
            
//set value
            endowment= GetSum(4);
            medicare
=GetSum(5);
            unemployee
=GetSum(6);
            fund
=GetSum(7);
            
//response string
            e.Row.Cells[0].Text="养老保险合计:" + String.Format("{0:C}",endowment)+
                
" 医疗保险合计:" + String.Format("{0:C}", medicare)+
                
" 失业保险合计:" + string.Format("{0:C}",unemployee)+
                
" 公积金合计:" + string.Format("{0:C}",fund)+
                
" 总计:"+string.Format("{0:C}",this.GetSum(endowment,medicare,unemployee,fund));

        }

    }

注:设置GridView的DataSource时,根据你欲合并数据行的列进行排序。
附1: 

/// <summary>
    
/// get sum 
    
/// </summary>
    
/// <param name="i">column id</param>
    
/// <returns>sum value</returns>

     private   double  GetSum( int  i)
    
{
        
//define variable
        double sum = 0;
        
foreach (GridViewRow row in this.gvInsurance.Rows)
        
{
            sum 
+= Convert.ToDouble(string.Format("{0:2F}",row.Cells[i].Text.Remove(0,1)));
            
        }

        
return sum;
    }

    
/// <summary>
    
/// get all sum
    
/// </summary>
    
/// <param name="endowment">养老保险</param>
    
/// <param name="medicare">医疗保险</param>
    
/// <param name="unemployee">失业保险</param>
    
/// <param name="fund">公积金</param>
    
/// <returns>sum</returns>

     private   double  GetSum( double  endowment, double  medicare, double  unemployee, double  fund)
    
{
        
return endowment+medicare+unemployee+fund;
    }

这篇关于GridView的数据行的行合并,GridView实现合计数据项的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/687196

相关文章

大模型研发全揭秘:客服工单数据标注的完整攻略

在人工智能(AI)领域,数据标注是模型训练过程中至关重要的一步。无论你是新手还是有经验的从业者,掌握数据标注的技术细节和常见问题的解决方案都能为你的AI项目增添不少价值。在电信运营商的客服系统中,工单数据是客户问题和解决方案的重要记录。通过对这些工单数据进行有效标注,不仅能够帮助提升客服自动化系统的智能化水平,还能优化客户服务流程,提高客户满意度。本文将详细介绍如何在电信运营商客服工单的背景下进行

基于MySQL Binlog的Elasticsearch数据同步实践

一、为什么要做 随着马蜂窝的逐渐发展,我们的业务数据越来越多,单纯使用 MySQL 已经不能满足我们的数据查询需求,例如对于商品、订单等数据的多维度检索。 使用 Elasticsearch 存储业务数据可以很好的解决我们业务中的搜索需求。而数据进行异构存储后,随之而来的就是数据同步的问题。 二、现有方法及问题 对于数据同步,我们目前的解决方案是建立数据中间表。把需要检索的业务数据,统一放到一张M

关于数据埋点,你需要了解这些基本知识

产品汪每天都在和数据打交道,你知道数据来自哪里吗? 移动app端内的用户行为数据大多来自埋点,了解一些埋点知识,能和数据分析师、技术侃大山,参与到前期的数据采集,更重要是让最终的埋点数据能为我所用,否则可怜巴巴等上几个月是常有的事。   埋点类型 根据埋点方式,可以区分为: 手动埋点半自动埋点全自动埋点 秉承“任何事物都有两面性”的道理:自动程度高的,能解决通用统计,便于统一化管理,但个性化定

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

异构存储(冷热数据分离)

异构存储主要解决不同的数据,存储在不同类型的硬盘中,达到最佳性能的问题。 异构存储Shell操作 (1)查看当前有哪些存储策略可以用 [lytfly@hadoop102 hadoop-3.1.4]$ hdfs storagepolicies -listPolicies (2)为指定路径(数据存储目录)设置指定的存储策略 hdfs storagepolicies -setStoragePo

Hadoop集群数据均衡之磁盘间数据均衡

生产环境,由于硬盘空间不足,往往需要增加一块硬盘。刚加载的硬盘没有数据时,可以执行磁盘数据均衡命令。(Hadoop3.x新特性) plan后面带的节点的名字必须是已经存在的,并且是需要均衡的节点。 如果节点不存在,会报如下错误: 如果节点只有一个硬盘的话,不会创建均衡计划: (1)生成均衡计划 hdfs diskbalancer -plan hadoop102 (2)执行均衡计划 hd

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

hdu2241(二分+合并数组)

题意:判断是否存在a+b+c = x,a,b,c分别属于集合A,B,C 如果用暴力会超时,所以这里用到了数组合并,将b,c数组合并成d,d数组存的是b,c数组元素的和,然后对d数组进行二分就可以了 代码如下(附注释): #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<que

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi