首页
最近更新
热门教程
ASP.NET
开发语言
开发环境
AJax教程
控件开发
统计报表
数据库
Web服务
安装部署
HTML教程
Javascript
XML教程
Community Server
NHibernate
书籍推荐
常用工具
实用代码
教程全文搜索
首页
>>
ASP.NET
GridView 72般绝技(五)
添加人:
iyond
添加时间:2007-08-12 阅读次数:6944
收藏此教程
17.GridView加入自动求和求平均值小计
效果图:
解决方案:
1
private
double
sum
=
0
;
//
取指定列的数据和,你要根据具体情况对待可能你要处理的是int
2
protected
void
GridView1_RowDataBound(
object
sender, GridViewRowEventArgs e)
3
{
4
if
(e.Row.RowIndex
>=
0
)
5
{
6
sum
+=
Convert.ToDouble(e.Row.Cells[
6
].Text);
7
}
8
else
if
(e.Row.RowType
==
DataControlRowType.Footer)
9
{
10
e.Row.Cells[
5
].Text
=
"
总薪水为:
"
;
11
e.Row.Cells[
6
].Text
=
sum.ToString();
12
e.Row.Cells[
3
].Text
=
"
平均薪水为:
"
;
13
e.Row.Cells[
4
].Text
=
((
int
)(sum
/
GridView1.Rows.Count)).ToString();
14
}
15
}
后台全部代码:
1
using
System;
2
using
System.Data;
3
using
System.Configuration;
4
using
System.Web;
5
using
System.Web.Security;
6
using
System.Web.UI;
7
using
System.Web.UI.WebControls;
8
using
System.Web.UI.WebControls.WebParts;
9
using
System.Web.UI.HtmlControls;
10
using
System.Data.SqlClient;
11
using
System.Drawing;
12
public
partial
class
Default7 : System.Web.UI.Page
13
{
14
SqlConnection sqlcon;
15
SqlCommand sqlcom;
16
string
strCon
=
"
Data Source=(local);Database=北风贸易;Uid=sa;Pwd=sa
"
;
17
protected
void
Page_Load(
object
sender, EventArgs e)
18
{
19
if
(
!
IsPostBack)
20
{
21
bind();
22
}
23
}
24
protected
void
GridView1_RowEditing(
object
sender, GridViewEditEventArgs e)
25
{
26
GridView1.EditIndex
=
e.NewEditIndex;
27
bind();
28
}
29
protected
void
GridView1_RowUpdating(
object
sender, GridViewUpdateEventArgs e)
30
{
31
sqlcon
=
new
SqlConnection(strCon);
32
string
sqlstr
=
"
update 飞狐工作室 set 姓名='
"
33
+
((TextBox)(GridView1.Rows[e.RowIndex].Cells[
1
].Controls[
0
])).Text.ToString().Trim()
+
"
',家庭住址='
"
34
+
((TextBox)(GridView1.Rows[e.RowIndex].Cells[
3
].Controls[
0
])).Text.ToString().Trim()
+
"
' where 身份证号码='
"
35
+
GridView1.DataKeys[e.RowIndex].Value.ToString()
+
"
'
"
;
36
sqlcom
=
new
SqlCommand(sqlstr, sqlcon);
37
sqlcon.Open();
38
sqlcom.ExecuteNonQuery();
39
sqlcon.Close();
40
GridView1.EditIndex
=
-
1
;
41
bind();
42
}
43
protected
void
GridView1_RowCancelingEdit(
object
sender, GridViewCancelEditEventArgs e)
44
{
45
GridView1.EditIndex
=
-
1
;
46
bind();
47
}
48
public
void
bind()
49
{
50
string
sqlstr
=
"
select top 5 * from 飞狐工作室
"
;
51
sqlcon
=
new
SqlConnection(strCon);
52
SqlDataAdapter myda
=
new
SqlDataAdapter(sqlstr, sqlcon);
53
DataSet myds
=
new
DataSet();
54
sqlcon.Open();
55
myda.Fill(myds,
"
飞狐工作室
"
);
56
GridView1.DataSource
=
myds;
57
GridView1.DataKeyNames
=
new
string
[]
{
"
身份证号码
"
}
;
58
GridView1.DataBind();
59
sqlcon.Close();
60
}
61
private
double
sum
=
0
;
//
取指定列的数据和
62
protected
void
GridView1_RowDataBound(
object
sender, GridViewRowEventArgs e)
63
{
64
if
(e.Row.RowIndex
>=
0
)
65
{
66
sum
+=
Convert.ToDouble(e.Row.Cells[
6
].Text);
67
}
68
else
if
(e.Row.RowType
==
DataControlRowType.Footer)
69
{
70
e.Row.Cells[
5
].Text
=
"
总薪水为:
"
;
71
e.Row.Cells[
6
].Text
=
sum.ToString();
72
e.Row.Cells[
3
].Text
=
"
平均薪水为:
"
;
73
e.Row.Cells[
4
].Text
=
((
int
)(sum
/
GridView1.Rows.Count)).ToString();
74
}
75
}
76
}
前台:唯一的花头就是设置ShowFooter="True" ,否则默认表头为隐藏的!
1
<
asp:GridView
ID
="GridView1"
runat
="server"
AutoGenerateColumns
="False"
CellPadding
="3"
OnRowEditing
="GridView1_RowEditing"
2
OnRowUpdating
="GridView1_RowUpdating"
OnRowCancelingEdit
="GridView1_RowCancelingEdit"
BackColor
="White"
BorderColor
="#CCCCCC"
BorderStyle
="None"
BorderWidth
="1px"
Font-Size
="12px"
OnRowDataBound
="GridView1_RowDataBound"
ShowFooter
="True"
>
3
<
FooterStyle
BackColor
="White"
ForeColor
="#000066"
/>
4
<
Columns
>
5
<
asp:CommandField
HeaderText
="编辑"
ShowEditButton
="True"
/>
6
<
asp:BoundField
DataField
="身份证号码"
HeaderText
="编号"
ReadOnly
="True"
/>
7
<
asp:BoundField
DataField
="姓名"
HeaderText
="姓名"
/>
8
<
asp:BoundField
DataField
="出生日期"
HeaderText
="邮政编码"
/>
9
<
asp:BoundField
DataField
="家庭住址"
HeaderText
="家庭住址"
/>
10
<
asp:BoundField
DataField
="邮政编码"
HeaderText
="邮政编码"
/>
11
<
asp:BoundField
DataField
="起薪"
HeaderText
="起薪"
/>
12
13
</
Columns
>
14
<
RowStyle
ForeColor
="#000066"
/>
15
<
SelectedRowStyle
BackColor
="#669999"
Font-Bold
="True"
ForeColor
="White"
/>
16
<
PagerStyle
BackColor
="White"
ForeColor
="#000066"
HorizontalAlign
="Left"
CssClass
="ms-formlabel DataGridFixedHeader"
/>
17
<
HeaderStyle
BackColor
="#006699"
Font-Bold
="True"
ForeColor
="White"
/>
18
</
asp:GridView
>
共
3
页 第
2
页
上一页
1
2
3
下一页
相关的教程:
GridView
技巧
GridView 72般绝技
收藏此教程
Currently.-0.05/5
-5
-4
-3
-2
-1
0
1
2
3
4
5
当前平均分:
-0.3
(
3
次打分)
-5
-4
-3
-2
-1
0
1
2
3
4
5
推荐阅读
GridView 72般绝技(一)
GridView 72般绝技(一)
GridView 72般绝技(一)
c#开发-基础知识及有用技巧(一)
GridView 72般绝技(三)
在GridView显示时间列时,设置时间的格式
asp.net 局域网存放文件
扩展GridView控件(11) - 合并指定列的相邻且内容相同的单元格
GridView 72般绝技(四)
GridView 72般绝技(四)
添加评论
评论主题
您的大名
您的评论
验证码
评论列表
ASP.NET论坛
|
网站帮助
|
加入收藏
知识库搜索:
用户信息
欢迎您,游客。
登录
|
注册
为什么要注册?
马上加入GotAspx,建立自己的知识库,与大家分享您的知识库,还可获得丰厚积分奖励!
本类热门
从零开始学ASP.NET(基础篇)
ASP.NET 2.0轻松实现数据库应用开发
ASP.NET 程序中常用的三十三种代码
GridView 72般绝技(一)
对初学者的建议:ASP.NET技术的学习顺序
单点登录在ASP.NET上的简单实现
ASP.NET数据库编程快速入门之技术慨述
ASP.NET 2.0中构造个性化网页
本类最新
介绍SubSonic【转】
ASP.NET访问XML的例子
WEB开发者版本级别
基于.NET2.0的System.Net.Mail发送邮件Demo
Asp.Net 文件操作基类(读取,删除,批量拷贝,批量删除,写入)
c#生成与 追加xml
一个复杂的Eval()绑定
将服务器上的一个.doc文档另存为到客户端