我无法从datagrid检索不可见列的值.如果列不可见,如何获取值?
这是我的代码:
数据网格:
<asp:BoundField DataField="id" HeaderText="ID" ReadOnly="True"
Visible="False" />
<asp:BoundField DataField="category" HeaderText="Category" />
<asp:CommandField ShowDeleteButton="True" ShowEditButton="True"
ShowHeader="True" />
行删除事件
protected void dgvCategory_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
string id = dgvCategory.Rows[e.RowIndex].Cells[0].Text;
string name = dgvCategory.Rows[e.RowIndex].Cells[1].Text;
runDelete(id, name);
loadDataCategory();
}
我该如何解决我的问题?
解决方法:
您可以将此ID列添加为DataKey
在你的aspx中
<asp:GridView DataKeyNames="id" ....
在你的事件
protected void dgvCategory_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
var key = this.GridView1.DataKeys[e.RowIndex].Value.ToString();
}
其他选项是使用CSS样式隐藏列
使用display创建新的CSS类:none;并将其应用于BoundField的ItemStyle-CssClass和HeaderStyle-CssClass.删除Visible =“ False”属性.
现在您可以像其他列一样获取值,但它不会显示在客户端UI中.