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

相关文章

Java注解之超越Javadoc的元数据利器详解

《Java注解之超越Javadoc的元数据利器详解》本文将深入探讨Java注解的定义、类型、内置注解、自定义注解、保留策略、实际应用场景及最佳实践,无论是初学者还是资深开发者,都能通过本文了解如何利用... 目录什么是注解?注解的类型内置注编程解自定义注解注解的保留策略实际用例最佳实践总结在 Java 编程

一文教你Python如何快速精准抓取网页数据

《一文教你Python如何快速精准抓取网页数据》这篇文章主要为大家详细介绍了如何利用Python实现快速精准抓取网页数据,文中的示例代码简洁易懂,具有一定的借鉴价值,有需要的小伙伴可以了解下... 目录1. 准备工作2. 基础爬虫实现3. 高级功能扩展3.1 抓取文章详情3.2 保存数据到文件4. 完整示例

使用Python实现IP地址和端口状态检测与监控

《使用Python实现IP地址和端口状态检测与监控》在网络运维和服务器管理中,IP地址和端口的可用性监控是保障业务连续性的基础需求,本文将带你用Python从零打造一个高可用IP监控系统,感兴趣的小伙... 目录概述:为什么需要IP监控系统使用步骤说明1. 环境准备2. 系统部署3. 核心功能配置系统效果展

Python实现微信自动锁定工具

《Python实现微信自动锁定工具》在数字化办公时代,微信已成为职场沟通的重要工具,但临时离开时忘记锁屏可能导致敏感信息泄露,下面我们就来看看如何使用Python打造一个微信自动锁定工具吧... 目录引言:当微信隐私遇到自动化守护效果展示核心功能全景图技术亮点深度解析1. 无操作检测引擎2. 微信路径智能获

使用Java将各种数据写入Excel表格的操作示例

《使用Java将各种数据写入Excel表格的操作示例》在数据处理与管理领域,Excel凭借其强大的功能和广泛的应用,成为了数据存储与展示的重要工具,在Java开发过程中,常常需要将不同类型的数据,本文... 目录前言安装免费Java库1. 写入文本、或数值到 Excel单元格2. 写入数组到 Excel表格

Python中pywin32 常用窗口操作的实现

《Python中pywin32常用窗口操作的实现》本文主要介绍了Python中pywin32常用窗口操作的实现,pywin32主要的作用是供Python开发者快速调用WindowsAPI的一个... 目录获取窗口句柄获取最前端窗口句柄获取指定坐标处的窗口根据窗口的完整标题匹配获取句柄根据窗口的类别匹配获取句

在 Spring Boot 中实现异常处理最佳实践

《在SpringBoot中实现异常处理最佳实践》本文介绍如何在SpringBoot中实现异常处理,涵盖核心概念、实现方法、与先前查询的集成、性能分析、常见问题和最佳实践,感兴趣的朋友一起看看吧... 目录一、Spring Boot 异常处理的背景与核心概念1.1 为什么需要异常处理?1.2 Spring B

python处理带有时区的日期和时间数据

《python处理带有时区的日期和时间数据》这篇文章主要为大家详细介绍了如何在Python中使用pytz库处理时区信息,包括获取当前UTC时间,转换为特定时区等,有需要的小伙伴可以参考一下... 目录时区基本信息python datetime使用timezonepandas处理时区数据知识延展时区基本信息

Python位移操作和位运算的实现示例

《Python位移操作和位运算的实现示例》本文主要介绍了Python位移操作和位运算的实现示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 目录1. 位移操作1.1 左移操作 (<<)1.2 右移操作 (>>)注意事项:2. 位运算2.1

如何在 Spring Boot 中实现 FreeMarker 模板

《如何在SpringBoot中实现FreeMarker模板》FreeMarker是一种功能强大、轻量级的模板引擎,用于在Java应用中生成动态文本输出(如HTML、XML、邮件内容等),本文... 目录什么是 FreeMarker 模板?在 Spring Boot 中实现 FreeMarker 模板1. 环