0

動的テーブルにデータテーブルの値を表示したいのですが、ループを繰り返しましたが、成功しませんでした.dtplantsは私のデータテーブルです.以下のコードで私を助けてください.

        StringBuilder builder = new StringBuilder();
        builder.Append("<table class=table1>");
        builder.Append("<thead>");
        builder.Append("<th>Configuration</th>");
        builder.Append("<th>Key Figures</th>");
        for (int i = 0; i < numberofplants; i++)
        {
            builder.Append("<th>");
            builder.Append(Convert.ToString(dtplants.Rows[i]));
            builder.Append("</th>");               
        }
        builder.Append("<thead>");
        builder.Append("<table>");

        Literal1.Text = builder.ToString(); 
    }
4

1 に答える 1

0

end tagsテーブルを閉じるには、を調整する必要があります

  ....    
  builder.Append("</thead>"); 
  builder.Append("</table>");

あなたのコード

   StringBuilder builder = new StringBuilder();
    builder.Append("<table class=table1>");
    builder.Append("<thead>");
    builder.Append("<th>Configuration</th>");
    builder.Append("<th>Key Figures</th>");
    for (int i = 0; i < numberofplants; i++)
    {
        builder.Append("<th>");
        builder.Append(Convert.ToString(dtplants.Rows[i]));
        builder.Append("</th>");               
    }
    builder.Append("</thead>");
    builder.Append("</table>");
于 2012-10-04T13:07:14.410 に答える