我有一个网格视图,其中包含4个模板字段,每个字段都包含一个文本框。
现在我将这些模板字段与数据源绑定在一起。当我作为用户键入文本框中的某些数据并单击保存按钮(一个不是gridview的一部分而是webform中的一个按钮的按钮)时,我无法获得click事件处理程序中的值在代码隐藏文件中。请帮帮我。
ASPX文件
<asp:TemplateField HeaderText="col1">
<ControlStyle Height="25px" Width="60px" />
<ItemTemplate>
<asp:TextBox ID="txt1" runat="server" Text='<%# Bind("[col1]") %>'>
</asp:TextBox>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="col2">
<ControlStyle Height="25px" Width="60px" />
<ItemTemplate>
<asp:TextBox ID="txt2" runat="server" Text='<%# Bind("[col2]") %>'>
</asp:TextBox>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="col3">
<ControlStyle Height="25px" Width="60px" />
<ItemTemplate>
<asp:TextBox ID="txt3" runat="server" Text='<%# Bind("[col3]") %>'>
</asp:TextBox>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="col4">
<ControlStyle Height="25px" Width="60px" />
<ItemTemplate>
<asp:TextBox ID="txt4" runat="server" Text='<%# Bind("[col4]") %>'>
</asp:TextBox>
</ItemTemplate>
</asp:TemplateField>
文件背后的代码
protected void ButtonAdd_Click(object sender, EventArgs e)
{
foreach (GridViewRow row in gvEdit.Rows)
{
string a = ((TextBox)row.FindControl("col1")).Text;
//above line gives a null value
}
}
答案 0 :(得分:1)
您需要遍历GridViewRowCollection
,然后针对每一行,通过标记中的Id
找到控件。例如:
protected void ButtonAdd_Click(object sender, EventArgs e)
{
foreach (GridViewRow row in gvEdit.Rows)
{
var txt1 = row.FindControl("txt1") as TextBox;
var txt2 = row.FindControl("txt2") as TextBox;
var txt3 = row.FindControl("txt3") as TextBox;
var txt4 = row.FindControl("txt4") as TextBox;
// access the Text property of each, e.g. txt1.Text
}
}
更新:确保在执行数据源绑定时,只会在初始加载时发生,而不是后续回发,否则每次都会重置更改。
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
GridView1.DataSource = // data source
GridView1.DataBind();
}
}