とにかく、Webサイトの別のページから取得している行に列/セルを追加できますか?
System.Web.UI.HtmlControls.HtmlTableRow
また、引っ張っている行の幅を変更する方法はありますか?
行とセルを作成する
HtmlTableRow htmlRow = new HtmlTableRow();
HtmlTableCell htmlCell = new HtmlTableCell();
行にセルを追加する
htmlCell.InnerHtml = "your data goes here";
htmlRow.Cells.Add(htmlCell);
テーブルに行を追加
HtmlTable htmlTable = new HtmlTable();
htmlTable.Rows.Add(htmlRow);
このコードを使用して CSS スタイルを追加できます
htmlCell.Attributes.Add("style", "width:50px;");