gpt4 book ai didi

c# - HtmlTable、HtmlTableRow、HtmlTableCell - 创建 thead、tbody 和 tfoot

转载 作者:太空狗 更新时间:2023-10-29 13:54:43 30 4
gpt4 key购买 nike

我正在使用 c# ASP .Net、HtmlTable、HtmlTableRow、HtmlTableCell 创建一个表。

例如...我需要用 <tfoot> and </tfoot> 包裹一些细胞

我尝试使用 HtmlGenericControl 将这些带有标签“tfoot”的单元格包装到 HtmlTable,但它没有用。

我知道 HtmlTableCell 可以在构造函数中为“thead”设置“th”,为 tbody 使用“td”。但我需要用实际的“thead”和“tbody”包裹它们。

有什么建议吗??

最佳答案

方法如下(如下)。使用的所有类都在 System.Web.UI.WebControls 中。

        TableRow headerRow = new TableHeaderRow();
TableRow row2 = new TableRow();
TableRow row3 = new TableFooterRow();
Table table = new Table();

var cell1 = new TableCell();
headerRow.TableSection = TableRowSection.TableHeader;
cell1.Text = "Header";
headerRow.Cells.Add(cell1);

var cell2 = new TableCell();
cell2.Text = "Contents";
row2.Cells.Add(cell2);

var cell3 = new TableCell();
cell3.Text = "Footer";
row3.Cells.Add(cell3);
row3.TableSection = TableRowSection.TableFooter;


table.Rows.Add(headerRow);
table.Rows.Add(row2);
table.Rows.Add(row3);
this.Controls.Add(table);

关于c# - HtmlTable、HtmlTableRow、HtmlTableCell - 创建 thead、tbody 和 tfoot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2052003/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com