GridView“gv”激发了未处理的事件“RowUpdating”。但是我定义了事件啊,求高手指点
<asp:GridView ID="gv" runat="server" AutoGenerateColumns="False"
Height="86px" onselectedindexchanged="gv_SelectedIndexChanged"
Width="574px" onrowupdating="gv_RowUpdating"
onpageindexchanging="gv_PageIndexChanging" onrowcommand="gv_RowCommand"
onrowediting="gv_RowEditing">
<Columns>
<asp:BoundField DataField="name" HeaderText="用户名" />
<asp:BoundField DataField="realname" HeaderText="真实姓名" />
<asp:BoundField DataField="mailbox" HeaderText="邮箱" />
<asp:BoundField DataField="telephone" HeaderText="联系电话" />
<asp:BoundField DataField="operate_authority" HeaderText="操作权限" />
<asp:BoundField DataField="group_authority" HeaderText="组权限" />
<asp:ButtonField CommandName="edit" Text="修改" />
<asp:ButtonField CommandName="Delete" Text="删除" />
</Columns>
protected void gv_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
Response.Write("1234");
this.Response.Write("<script language=javascript>window.open('InfoEdit.aspx','newwindow','width=500,height=500,z-look=yes,alwaysRaised=yes')</script>");
}