创建动态表

时间:2012-04-22 19:10:52

标签: c# .net visual-studio-2010 dynamic

我正在使用C#来发展我的技能。我正在尝试在线发现的教程:http://geekswithblogs.net/dotNETvinz/archive/2009/03/17/dynamically-adding-textbox-control-to-aspnet-table.aspx但是当我尝试代码并添加Generate表方法时,它告诉我找不到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);
            }
        }

非常感谢任何帮助

2 个答案:

答案 0 :(得分:3)

确保您要导入表MSDN Ref

的命名空间

using System.Web.UI.WebControls;

位于文件顶部?

答案 1 :(得分:0)

不幸的是,教程忽略了他们正在使用的库,并且它可能令人不安。但有一个简单的解决方法:谷歌你正在收到错误,在这种情况下是C# Table,第三个结果是:

表类(System.Web.UI.WebControls) - MSDN - Microsoft

在括号之间是您需要包含的库:

@using System.Web.UI.WebControls; // for .cshtml pages
using System.Web.UI.WebControls; // for .cs pages

只需在搜索中包含C#,然后查找MSDN&#39;搜索结果。