4

我见过类似的问题,但没有一个答案能帮助我解决这个问题。我有一个带有 ReadOnly 字段的 GridView,如下所示。

网格视图:

<asp:GridView ID="GridView1" runat="server" AllowPaging="True" 
              AutoGenerateColumns="False" DataKeyNames="projectID" 
              DataSourceID="SqlDataSource1" 
              EmptyDataText="There are no data records to display." 
              PageSize="5" OnRowUpdating="GridView1_RowUpdating">
  <Columns>
    <asp:CommandField ShowDeleteButton="True" ShowEditButton="True"/>
    <asp:BoundField DataField="prID" HeaderText="prID" SortExpression="prID"/>
    <asp:BoundField DataField="projectName" HeaderText="projectName" 
                    SortExpression="projectName" />
    <asp:BoundField DataField="projectType" HeaderText="projectType" 
                    SortExpression="projectType" />
  </Columns>
  <EditRowStyle CssClass="GridViewEditRow"/>
</asp:GridView>

如您所见,prIDBoundField 具有Readonly=True属性。当用户更新行中的其他字段时,我试图获取prIDin 代码隐藏的值。

代码隐藏:

protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
{

    GridViewRow row = GridView1.Rows[e.RowIndex];

    String d1 = ((TextBox)(row.Cells[2].Controls[0])).Text;
    String d2 = ((TextBox)(row.Cells[3].Controls[0])).Text;

    // this only works while the field is not readonly      
    string prIDUpdate = ((TextBox)(row.Cells[1].Controls[0])).Text; 

}

注意:我已经尝试使用GridView1.DataKeys[e.RowIndex]并且onRowDataBoundd 设置 BoundField 仅在代码隐藏中准备好,但我无法获得结果

提前致谢!

4

1 回答 1

16

我看到你在GridView 控件中的 DataKeyNames 设置是这样的

DataKeyNames="projectID"

那我猜你的键名是projectID而不是prID,不是吗?如果是这样,您可以获得所选行的数据,如下所示:

string id = GridView1.DataKeys[e.RowIndex]["projectID"].ToString();

您还应该添加此列:

<asp:BoundField DataField="projectID" HeaderText="prID" SortExpression="projectID"/>

你试过吗?

以其他方式,您可以尝试改用 TemplateField

<Columns>
            <asp:TemplateField HeaderText="prID" SortExpression="prID">
                <ItemTemplate>
                    <asp:Label ID="lblPrId" runat="server" Text='<%# Bind("prID") %>'></asp:Label>
                </ItemTemplate>
            </asp:TemplateField>
            <asp:BoundField DataField="projectName" HeaderText="projectName" 
                    SortExpression="projectName" />
            <asp:BoundField DataField="projectType" HeaderText="projectType" 
                    SortExpression="projectType" />
  </Columns>

这段代码从 GridView1_RowUpdating 事件处理程序中的 prID 列获取数据:

Label lblPrId = row.FindControl("lblPrId") as Label;    
string prId = lblPrId .Text;

抱歉,如果这没有帮助。

于 2013-11-08T12:11:20.113 回答