asp.net怎样添加GridView的RowCommand事件

第一种方法:

选中GridView控件,然后选中属性工具中的时间按钮(图标是一个闪电),然后找到RowCommand,然后双击,自动生成了RowCommand事件。

第二种方法:

在源代码视图中
<asp:GridView ID="GridView1" runat="server" OnRowCommand="GridView1_RowCommand">
</asp:GridView>

这句话:OnRowCommand="GridView1_RowCommand" 是添加OnRowCommand事件
然后在你的逻辑代码中写入
protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
    {
          //这里为你要写的代码
    }

你可能感兴趣的:(职场,GridView,asp.net,休闲,RowCommand)