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" />
on 行削除イベント
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();
}
どうすれば問題を解決できますか?