0

我有这个带有 AutoGenerateEditButton="true" 的网格视图:

<asp:GridView ID="myGridview" runat="server" 
    ShowFooter="True" 
    AutoGenerateDeleteButton="true" AutoGenerateEditButton="true" 
    AutoGenerateColumns="False" AllowSorting="True" DataKeyNames="id" DataSourceID="odsVolumeSearch" OnRowUpdating="myGridview_RowUpdating">
    <Columns>
        <asp:BoundField DataField="id" HeaderText="id" Visible="false" InsertVisible="False" ReadOnly="True" SortExpression="id" />
        <asp:BoundField DataField="Date" HeaderText="date" SortExpression="Date" ReadOnly="True" />
        <asp:BoundField DataField="Items" HeaderText="Items" SortExpression="Items" />            
    </Columns> 
</asp:GridView>

这是我的对象数据源:

<asp:ObjectDataSource ID="myOds" runat="server" 
    DeleteMethod="myDeleteMethod" SelectMethod="mySelectMethod" 
    TypeName="TheirLocation.sqlDataLayer" UpdateMethod="myUpdateMethod">
    <DeleteParameters>
        <asp:Parameter Name="id" Type="Int32" />
    </DeleteParameters>
    <SelectParameters>
        <asp:Parameter Name="fromDate" Type="DateTime"/>
        <asp:Parameter Name="toDate" Type="DateTime"/>
    </SelectParameters>
    <UpdateParameters>
        <asp:Parameter Name="id" Type="Int32" />
        <asp:Parameter Name="volume" Type="Int32" />
    </UpdateParameters>
</asp:ObjectDataSource>

这里的混乱是我的更新事件处理程序:

protected void gvVolumeList_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
    GridViewRow row = gvVolumeList.Rows[e.RowIndex];
    String debugString = ((TextBox)(row.Cells[1].Controls[0])).Text;
    Response.Write("<script>alert('" + debugString + "');</script>");
}

我只是想从我的文本框中获取值以显示在警报中,但我无法修复它。我已经尝试了各种方法并且疯狂地用谷歌搜索,但我无法获得价值

编辑

我认为问题是我从单元格中获取文本,而不是单元格内的文本框。虽然还是不知道该怎么办

4

3 回答 3

1
protected void GridView_RowUpdating(object sender, GridViewUpdateEventArgs e)
  {    
    GridViewRow row = TaskGridView.Rows[e.RowIndex];
    String str = ((TextBox)(row.Cells[2].Controls[0])).Text;
  }
于 2013-07-29T10:22:37.617 回答
1

如果你想从你的 gridview 中获取 Id !如果您已将 Bound 字段可见性声明为 false ,则您的绑定字段将不会被呈现,因此您无法通过使用获取其值

  String debugString = ((TextBox)(row.Cells[1].Controls[0])).Text;

并且您的单元格索引从 0 而不是从 1(如果您尝试获取 Id) 开始。更好地使用 gridview 的 RowCommand 或者让你的 Id 属性visible ="true"

- - - - - - - - - - - - - 或者 - - - - - - - - - - - - ----- 使用模板字段

 <asp:TemplateField>
            <ItemTemplate>
                <asp:HiddenField ID="HiddenField1" runat="server" 
                    Value='<%# Eval("Id") %>' />
                 ....
            </ItemTemplate>

代码背后

if (row.RowType == DataControlRowType.DataRow)
      {
       HiddenField Id = (HiddenField)row.Cells[0].FindControl("HiddenField1");

       }
于 2013-07-26T15:56:40.923 回答
0

这是如何在行更新中获取控制值。

 protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
 {
    GridViewRow row = (GridViewRow)GridView1.Rows[e.RowIndex];
    //int id = Int32.Parse(GridView1.DataKeys[e.RowIndex].Value.ToString());
    TextBox tname = (TextBox)row.FindControl("nam");
   //to get value of first cell
    string str = row.Cells[0].Text.ToString();
 }
于 2013-07-26T12:35:54.970 回答