私はこれを持っていBoundField
ますGridView
<asp:BoundField DataField="ReportId" HeaderText="RId" Visible="false" />
しかし、そのフィールドにテキストを取得しようとすると、空が返されます。
protected void gvwReports_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "ViewSchedule")
{
int index = Convert.ToInt32(e.CommandArgument);
GridViewRow row = gvwReports.Rows[index];
string s = row.Cells[0].Text;
}
}
BoundField's
.Visible
ただし、プロパティを次のように変更すると、正しい値が返されますtrue