GridView 获取隐藏字段的值

<asp:GridView ID="GV" runat="server" ShowFooter="false" GridLines="both" AutoGenerateColumns="false" DataKeyNames="ID,NAME">

主要看DataKeyNames

protected void base_gvMain_OnRowDataBound(object sender, GridViewRowEventArgs e)
{
    string id = GV.DataKeys[e.Row.RowIndex][0].ToString();
    string name= GV.DataKeys[e.Row.RowIndex][1].ToString();
    //这里只是用GridView的数据绑定事件做个例子,放到其他地方也一样,只要考虑传递被点击的行下标就可以了
}


事件可以放到 选择编辑删除 中

你可能感兴趣的:(GridView)