私はC#を使用してスキルを開発しています。オンラインで見つけたチュートリアルを試しています:http://geekswithblogs.net/dotNETvinz/archive/2009/03/17/dynamicly-adding-textbox-control-to-aspnet-table.aspxしかし、コードを試すとそして、Generate tableメソッドを追加すると、のタイプまたは名前空間名Table table = new Table();
が見つからなかったことがわかります。これに使用する名前空間を誰かが知っていますか。これが残りのコードです:
private void GenerateTable(int colsCount, int rowsCount)
{
//Creat the Table and Add it to the Page
Table table = new Table();
table.ID = "Table1";
Page.Form.Controls.Add(table);
// Now iterate through the table and add your controls
for (int i = 0; i < rowsCount; i++)
{
TableRow row = new TableRow();
for (int j = 0; j < colsCount; j++)
{
TableCell cell = new TableCell();
TextBox tb = new TextBox();
// Set a unique ID for each TextBox added
tb.ID = "TextBoxRow_" + i + "Col_" + j;
// Add the control to the TableCell
cell.Controls.Add(tb);
// Add the TableCell to the TableRow
row.Cells.Add(cell);
}
// Add the TableRow to the Table
table.Rows.Add(row);
}
}
どんな助けでも大歓迎ですありがとう