博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
GridView数据汇总代码
阅读量:6787 次
发布时间:2019-06-26

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

  protected void gviewEmployees_RowDataBound(object sender, GridViewRowEventArgs e)

    {

        if (e.Row.RowType == DataControlRowType.DataRow)

        {

            e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=\"\"");

            e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor=\"#BFDFFF\"");

            TextBox txt = (TextBox)e.Row.Cells[3].FindControl("txtOrderNum");

            SumConsume += Convert.ToSingle(e.Row.Cells[2].Text.ToString().Substring(1)) * Convert.ToSingle(txt.Text);

        }

        if (e.Row.RowType == DataControlRowType.Footer)
        {
            e.Row.Cells[4].Text = "您的消费总额为:" + string.Format("{0:C}", Convert.ToDecimal(SumConsume.ToString()));
        }
    }

转载于:https://www.cnblogs.com/zhangchenliang/archive/2008/01/08/1029669.html

你可能感兴趣的文章
Nginx的反向代理与负载均衡
查看>>
redis之(十四)redis的主从复制的原理
查看>>
Velocity入门指南
查看>>
ntp redhat
查看>>
sum(case when status=1 then 1 else 0 end) 的意思
查看>>
Win7硬盘安装方法
查看>>
python - 列表
查看>>
UIVisualEffectView用法
查看>>
springmvc+mybatis整合cms+UC浏览器文章功能
查看>>
docker安装(centos6.5_x86_64)
查看>>
mysql悲观锁与乐观锁
查看>>
ubuntu下python2-python3版共存,创建django项目出现的问题
查看>>
2018.4.3三周第二次课
查看>>
eclipse_jee版本提供了从数据库直接生成实体类的工具!
查看>>
Error: Can't set headers after they are sent
查看>>
本地用户模式、虚拟用户模式使用
查看>>
任正非接班人亮相:原来他要的是这种类型!
查看>>
valgrind 运行出错
查看>>
ubuntu日常使用心得(随时更新中。。。)
查看>>
Java 多线程回顾
查看>>