我无法检索在GridView的文本框模板字段中输入的新值。
这是我的标记:
<asp:TemplateField HeaderText="username" SortExpression="username">
<ItemTemplate>
<asp:Label ID="Label2" runat="server" Text='<%# Bind("username") %>'></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<asp:TextBox ID="txtUserName" runat="server" Text='<%# Bind("username") %>'></asp:TextBox>
</EditItemTemplate>
</asp:TemplateField>
以下是我在GridView的RowCommand事件处理程序中尝试检索新值的方法:
string userName = ((TextBox)grdUserList.Rows[rowIndex].FindControl("txtUserName")).Text;
执行此代码时,我得到旧值而不是新键入的值。
有谁知道我错过了什么?提前谢谢。
答案 0 :(得分:1)
您正在错误的GridView事件中检索新值。您必须在GridView控件中添加OnRowUpdating="grdUserList_RowUpdating"
事件,然后检索新的TextBox值。
OnRowUpdating
事件:
protected void grdUserList_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
string userName = ((TextBox)grdUserList.Rows[e.RowIndex].FindControl("txtUserName")).Text;
// Write your update query and logic over here.
}
您可以从here获取参考资料以获取更多知识。
如果您有任何疑问,请与我们联系。
答案 1 :(得分:1)
我刚刚找到解决问题的方法。我搜索并发现GridView在检索过程开始之前正在刷新,因为我在Page_Load方法上重新绑定了GridView。我通过使用IsPostback方法返回一个帖子(或者至少在我做出更改之前)没有重新绑定gridview来修复问题。感谢大家的回复:)
答案 2 :(得分:0)
use this code in gridview
<Columns>
<asp:TemplateField HeaderText="SrNo">
<EditItemTemplate>
<asp:TextBox ID="txtsrno" runat="server" Text='<%#Eval("SrNo") %>'>
</asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="lblsrno" runat="server" Text='<%#Eval("SrNo") %>'>
</asp:Label>
</ItemTemplate>
</asp:TemplateField>
</Columns>