我正在尝试更新Gridview记录。在下面给出的代码中,我没有得到“ txtChangeQuantity”
GridView1_RowUpdating更新事件中的textbox值。它只是显示一个
空字符串。我在这里想念什么?
TextBox tb = row.Cells[2].FindControl("txtChangeQuantity") as TextBox;
string a = tb.Text;
一个是“”
<asp:GridView ID="GridView1" runat="server" CellPadding="4" ForeColor="#333333" GridLines="None" AutoGenerateColumns="False" Width="450px"
DataKeyNames="ItemID" OnRowDeleting="GridView1_RowDeleting" OnRowEditing="GridView1_RowEditing" OnRowUpdating="GridView1_RowUpdating">
<AlternatingRowStyle BackColor="White" />
<Columns>
<asp:BoundField DataField="ItemName" HeaderText="Name" ReadOnly="true" />
<asp:BoundField DataField="Price" HeaderText="Unit Price" ReadOnly="true" />
<asp:TemplateField>
<ItemTemplate>
<asp:Label ID="lbltxtChangeQuantity" runat="server" Text='<%# Eval("Quantity") %>' />
</ItemTemplate>
<EditItemTemplate>
<asp:TextBox ID="txtChangeQuantity" runat="server" Text='<%# Eval("Quantity") %>' />
</EditItemTemplate>
</asp:TemplateField>
<asp:TemplateField>
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# String.Format("{0:c}", ((double)Eval("Price"))*((int)Eval("Quantity"))) %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:CommandField ShowEditButton="true" />
<asp:TemplateField>
<ItemTemplate>
<asp:LinkButton ID="lnkdelete" runat="server" CommandName="Delete" >Delete</asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
</Columns>
<FooterStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#FFCC66" ForeColor="#333333" HorizontalAlign="Center" />
<RowStyle BackColor="#FFFBD6" ForeColor="#333333" />
<SelectedRowStyle BackColor="#FFCC66" Font-Bold="True" ForeColor="Navy" />
<SortedAscendingCellStyle BackColor="#FDF5AC" />
<SortedAscendingHeaderStyle BackColor="#4D0000" />
<SortedDescendingCellStyle BackColor="#FCF6C0" />
<SortedDescendingHeaderStyle BackColor="#820000" />
</asp:GridView>
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
BindGrid();
}
}
private void BindGrid()
{
if (Session["CartItems"] != null)
{
List<ItemModel> itemList = (List<ItemModel>)Session["CartItems"];
GridView1.DataSource = itemList;
GridView1.DataBind();
}
}
protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
{
GridView1.EditIndex = e.NewEditIndex;
BindGrid();
}
protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
RepItem = new ItemRepository();
string val = e.Keys["ItemID"].ToString();
if (Session["CartItems"] != null)
{
GridViewRow row = (GridViewRow)GridView1.Rows[e.RowIndex];
List<ItemModel> itemList = (List<ItemModel>)Session["CartItems"];
TextBox tb = row.Cells[2].FindControl("txtChangeQuantity") as TextBox;
string a = tb.Text;
GridView1.DataSource = itemList;
GridView1.DataBind();
}
}
最佳答案
尝试这个.....
string test = (GridView1.Rows[row].FindControl("txtChangeQuantity") as TextBox).Text
关于c# - 无法获取TextBox值OnRowUpdating,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30544335/