GridView如何自已写Edit事件?
.aspx页放了一个GridView
.aspx.cs页 GridView.Bind()了数据库值。
那么我怎么找到他的Edit事件?是要我自己写吗?
------解决方案--------------------可以写在GridView的
Protected Sub GridView1_RowCommand(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewCommandEventArgs) Handles GridView1.RowCommand
If e.CommandName = "EditBut " Then
.......
end if
End Sub
可以试下
------解决方案--------------------就是要自己写了!
------解决方案--------------------protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
------解决方案--------------------是的要自己写
------解决方案--------------------选中 GridView 》 按 F4 出现属性面板 》 切换到事件(点那个闪电符号)》找到 Editing 事件 》 双击,进入代码页,写你的代码