取值方法如下:
string
id
=
(GridView1.Rows[e.RowIndex].FindControl("TextBox2")
as
TextBox).Text
将gridview的列转换成模板以后,在VS里面查看源代码,看你的gridview,结果就出现了。
OnRowEditing这是当你点击[编辑]按钮时会执行的方法。进入了编辑模式后再点击[更新]时又会触发GridView.RowUpdating事件,按你的说法就是执行OnRowUpdating方法了。让GridView的某一行进入编辑模式的关键是:
1、CommandField里设置了ShowEditButton属性为true.
2、ButtonField的CommandName为Edit.
3、TemplateField内的任意一种Button(LinkButton, ImageButton, Button)只要它的CommandName为Edit.
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)