所以我的网页上有这个GridView。它是数据绑定的,因此在RowDataBound事件期间,此代码运行良好:
protected void myGridView_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
TimecardApproval shift = (TimecardApproval)e.Row.DataItem;
}
}
“shift”变量包含我需要的所有数据,效果很好。但是,这个代码用于保存数据:
protected void btnSubmitApprovals_Click(object sender, ImageClickEventArgs e)
{
foreach (GridViewRow item in gvTimeCards.Rows)
{
TimecardApproval shift = (TimecardApproval)item.DataItem;
// code to update the row
}
}
DataItem为空!为什么?由于该字段存在,因此它似乎很奇怪。我应该循环其他东西吗?
答案 0 :(得分:12)
我知道您可能希望通过将DataItem强制转换为TimeCardApproval来实现智能感知。你可以这样做。使用DataKeyNames存储每行应为TimecardApprovalID
的主键,并在您的代码中访问主键并使用它来获取原始项
foreach (GridViewRow item in gvTimeCards.Rows)
{
//get the ID of the TimeApproval for each row
string id = gvDocs.DataKeys[item.RowIndex].Value.ToString();
//string id = ((HiddenField) item.FindControl("IDHiddenField")).Value;
//string id = item.Cells[0].Text;
//use the ID or get TimeCardApproval object from DB
TimecardApproval shift = MyDB.GetTimeCardApproval(id);
}
设置密钥
<asp:GridView ID="gvTimeCards" DataKeyNames="TimecardApprovalID">
</asp:GridView>
答案 1 :(得分:3)
也许,这有助于你 网格栏:
<asp:TemplateField HeaderText="Item ID">
<ItemTemplate>
<asp:Label runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Id") %>'/>
<asp:HiddenField runat="server" ID="hfDataItem" Value='<%# JsonConvert.SerializeObject(Container.DataItem) %>'/>
</ItemTemplate></asp:TemplateField>
代码背后:
protected void btApply_OnClick(object sender, EventArgs e)
{
var rows = (from GridViewRow row in gvResult.Rows
where row.RowType == DataControlRowType.DataRow
let dataItem = (HiddenField) row.FindControl("hfDataItem")
select JsonConvert.DeserializeObject<ResultGridRowItem>(dataItem.Value));
}
答案 2 :(得分:1)
gridview数据绑定事件在按钮单击之前触发。听起来很奇怪,但那是asp.net page life cycle疯狂。
尝试在gridview RowUpdating
或RowUpdated
事件中使用您的代码。