asp.net 无法从gridview内的templateField中的文本框获取值

pieyvz9o  于 2022-12-01  发布在  .NET
关注(0)|答案(4)|浏览(177)

很抱歉之前的代码。有人能帮忙吗?我有一个gridview GridView1,它是通过从Excel工作表导入来填充PageLoad()的,该工作表有三列:
1.日期
1.客户
1.缴款书号第日
该工作表有五行。用户可以编辑页面上文本框中的数据(标记如下)。编辑后,当用户单击提交按钮时,我需要从所有文本框中获取这些新值,并从填充GridView的位置更新同一个Excel工作表。
我创建了三个字符串数组:dateArraycustArraypayingInBookArray来存储这些新值。但是当我运行应用程序时,这三个数组都是空的。

标记:

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false" DataKeyNames="Date,Customers,PayingInBookNoOrDD" >
    <Columns>
    <asp:TemplateField>
        <HeaderTemplate>Date</HeaderTemplate>
        <ItemTemplate>
            <asp:TextBox runat="server" ID="txtDate" Text='<%# Bind("Date") %>'></asp:TextBox>
        </ItemTemplate>
    </asp:TemplateField>
    <asp:TemplateField>
        <HeaderTemplate>Customers</HeaderTemplate>
        <ItemTemplate>
            <asp:TextBox runat="server" ID="txtCustomers" Text='<%# Bind("Customers") %>'></asp:TextBox>
        </ItemTemplate>
    </asp:TemplateField>
    <asp:TemplateField>
        <HeaderTemplate>PayingInBookNoOrDD</HeaderTemplate>
        <ItemTemplate>
            <asp:TextBox runat="server" ID="txtPayingInBookNoOrDD" Text='<%# Bind("PayingInBookNoOrDD") %>'></asp:TextBox>
        </ItemTemplate>
    </asp:TemplateField>
    </Columns>
</asp:GridView>

<asp:Button ID="txtSubmit" runat="server" Text="Submit" onclick="txtSubmit_Click" />

程式码后置:

protected void Page_Load(object sender, EventArgs e)
{
    string selectQuery = "SELECT * FROM [Month1$B2:D5]";
    OleDbConnection conn = new OleDbConnection(connString);

    conn.Open();

    OleDbDataAdapter da = new OleDbDataAdapter(selectQuery, conn);
    DataSet ds = new DataSet();
    da.Fill(ds);

    GridView1.DataSource = ds;
    GridView1.DataBind();

    conn.Close();
    da.Dispose();
    conn.Dispose();
}

protected void txtSubmit_Click(object sender, EventArgs e)
{
    IList<string> DateArray = new List<string>();
    IList<string> custArray = new List<string>();
    IList<string> payInBookArray = new List<string>();

    foreach (GridViewRow gr in GridView1.Rows)
    {
        TextBox lblDate = (TextBox)gr.Cells[0].FindControl("txtDate");
        DateArray.Add(lblDate.Text);

        TextBox lblCustomers = (TextBox)gr.Cells[1].FindControl("txtCustomers");
        custArray.Add(lblCustomers.Text);

        TextBox lblPayInBookNo = (TextBox)gr.Cells[2].FindControl("txtPayingInBookNoOrDD");
        payInBookArray.Add(lblPayInBookNo.Text);
    }

    ExportToExcel(DateArray.ToArray(), custArray.ToArray(), payInBookArray.ToArray()); 

}

如果有人有解决办法,请告诉我。

  • 谢谢-谢谢
ie3xauqp

ie3xauqp1#

在Page_Load事件上添加回发检查。我看不出btn_Submit代码有什么问题。

protected void Page_Load(object sender, EventArgs e)
{
    if(!this.IsPostBack){
         string selectQuery = "SELECT * FROM [Month1$B2:D5]";
         OleDbConnection conn = new OleDbConnection(connString);
         conn.Open();
         OleDbDataAdapter da = new OleDbDataAdapter(selectQuery, conn);
         DataSet ds = new DataSet();
         da.Fill(ds);
         GridView1.DataSource = ds;
         GridView1.DataBind();
         conn.Close();
         da.Dispose();
         conn.Dispose();
    }
}
hwazgwia

hwazgwia2#

就我个人而言,我会将您的txtSubmit_Click函数更改为:

protected void txtSubmit_Click(object sender, EventArgs e)
{
    IList<string> DateArray = new List<string>();
    IList<string> custArray = new List<string>();
    IList<string> payInBookArray = new List<string>();

    foreach (GridViewRow gr in GridView1.Rows)
    {
        TextBox lblDate = (TextBox)gr.FindControl("txtDate");
        DateArray.Add(lblDate.Text);

        TextBox lblCustomers = (TextBox)gr.FindControl("txtCustomers");
        custArray.Add(lblCustomers.Text);

        TextBox lblPayInBookNo = (TextBox)gr.FindControl("txtPayingInBookNoOrDD");
        payInBookArray.Add(lblPayInBookNo.Text);
    }

    ExportToExcel(DateArray.ToArray(), custArray.ToArray(), payInBookArray.ToArray()); 

}

直接访问.Cells集合中的值时总是遇到问题。当对行本身调用.FindControl时会发生什么?
正如其他人所说,为HTML字段和变量考虑新的名称是值得的。IList类型的DateArray现在看起来很简单,但它让我短暂地陷入了一个循环,以查看DateArray.ToArray()。命名约定和其他小的源代码更改现在不会花费您很多时间来修复,但是在您必须在处理其他项目几周或几个月之后重新访问此代码时,它将为您节省大量时间。

56lgkhnf

56lgkhnf3#

Protected Sub txtNombres_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs)
        Session("FiltroNombres") = DirectCast(sender, TextBox).Text

End Sub
zaq34kh6

zaq34kh64#

请尝试使用以下方法收集值
foreach(网格视图1.Rows中的网格视图行gr)
{
字符串日期=((文本框)gr.查找控件(“txtDate”)).text;
}

相关问题