c# – 如何从GridView中的模板字段中获取值?

前端之家收集整理的这篇文章主要介绍了c# – 如何从GridView中的模板字段中获取值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是我的GridView标记.
<Columns>
    <asp:TemplateField HeaderText="Customer Name">
        <ItemTemplate>
            <asp:Label ID="lblname" runat="server" Text='<%# DataBinder.Eval(Container.DataItem,"Customer.Name")%>'></asp:Label>
        </ItemTemplate>
    </asp:TemplateField>
    <asp:TemplateField HeaderText="PickUpPoint">
        <ItemTemplate>
            <asp:Label ID="lblPickUpPoint" runat="server" Text='<%# DataBinder.Eval(Container.DataItem,"Pickuppoint")%>'></asp:Label>
        </ItemTemplate>
    </asp:TemplateField>
</Columns>

我有一个按钮,将值存储在excel对象的工作表单元格中.

for (int i = 0; i < GridView2.Rows.Count; i++)
{
    for (int j = 0; j < GridView2.Rows[i].Cells.Count; j++)
    {
        xlWorkSheet.Cells[i + 1,j + 1] = GridView2.Rows[i].Cells[j].Text;
   }
}

如何获取GridView的值并将其存储在工作表中,因为GridView2.Rows [i] .Cells [j] .Text返回空字符串.

解决方法

你缺少一个类型转换.像这样做-
Label name = (Label)GridView2.Rows[i].Cells[j].FindControl("lblname");
xlWorkSheet.Cells[i + 1,j + 1] = name.Text;

更新 – 如果您可以将标签命名为Label0和Label1,那么在第二个for循环中 –

for (int j = 0; j < GridView2.Rows[i].Cells.Count; j++)
  {
     Label xyz = (Label)GridView2.Rows[i].Cells[j].FindControl("Label"+j);
     xlWorkSheet.Cells[i + 1,j + 1] = xyz.Text;
  }

对于Header文本字符串hText = GridView2.HeaderRow.Cells [您的列号] .Text;

原文链接:https://www.f2er.com/csharp/100828.html

猜你在找的C#相关文章