GridView1_RowDataBound 5

protectedvoidGridView1_RowDataBound(objectsender,GridViewRowEventArgse)stringe0=e.Row... protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
string e0 = e.Row.Cells[0].Text;//年
string e1 = e.Row.Cells[1].Text;//月
string e2 = e.Row.Cells[2].Text;//姓名
string e18 = e.Row.Cells[18].Text;
string e19 = e.Row.Cells[19].Text;
怎么理解上述代码的功能呢?
展开
 我来答
lipai006
2008-07-16 · TA获得超过240个赞
知道小有建树答主
回答量:610
采纳率:0%
帮助的人:226万
展开全部
RowDataBound
是在给GridView绑定完数据后触发的 就是说数据绑定完了 但是需要做一些调整 就可以在这里做操作
string e0 = e.Row.Cells[0].Text;//年
说一个你就明白了
声明一个字符串便林 e0
e就是protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) 这个参数 GridViewRowEventArgs 这个对象是为事件提供数据用的 也就是说e现在就是GridView里面的整个数据的集合
e.Row row就是指行对象 就是GridView中的行
e.Row.Cells[0] Cells 就是列对象 就是GridView中的一列 Cells[0]表示第一列(跟数组一样 是从0开始标记的)
e.row.Cells[0].Text Text 该列的内容(你应该明白的)
其实GridView在绑定的时候是一个循环 所以 这个事件也是一遍一遍的循环的
string e0 = e.Row.Cells[0].Text;//年
string e1 = e.Row.Cells[1].Text;//月
string e2 = e.Row.Cells[2].Text;//姓名
string e18 = e.Row.Cells[18].Text;
string e19 = e.Row.Cells[19].Text;
就是得到第1,2,3,19,20列的指 分别赋给变量
我觉得这么做除了测试 没别的用 一般在这里都是对绑定的数据做处理的 比如某列是姓名字段 在数据库是0和1 0是男性 1是女性 那么在这里就可以判断(比如是第一列) if(e.Row.Cells[0].Text=="0"){e.Row.Cells[0].Text="男";}else{e.Row.Cells[0].Text="女";}
LZ明白了吧~!
百度网友0424af562
2008-07-20
知道答主
回答量:4
采纳率:0%
帮助的人:0
展开全部
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
string e0 = e.Row.Cells[0].Text;//年

string e0(自己申明的字符串)
e传进的那个对象(这是哪个事件就是哪个对象控件)
e(对象名).Row(行).Cells[0](索引列).Text(用于获取文本内容)

参考资料: 书上都有

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式