1

我需要使用 CreateTable 方法来创建我的表,然后我需要我的表每隔几秒刷新一次所有值,我尝试使用 System.Threading.Thread.Sleep 并使用计时器。但是,由于各种原因,例如表格未显示或循环太快,我无法使其正常工作,对此我最好的选择是什么?接受任何建议,也是使用 PlaceHolder 来显示我的表格的最佳选择,如果没有,我应该使用什么?感谢您提前提供任何帮助。

    protected void CreateTable()
    {
        int tblColumns = 20;
        int tblRows = 50;
        //Create the table
        Table tbl = new Table();

        tbl.CssClass = "table";
        //Add table
        PlaceHolder1.Controls.Add(tbl);
        Random RandomNumber = new Random();
        for (int i = 0; i < tblRows; i++)
        {
            TableRow tr = new TableRow();
            for (int j = 0; j < tblColumns; j++)
            {
                TableCell tc = new TableCell();
                int Range = RandomNumber.Next(1, 99);
                tc.Text = Range.ToString();

                int tblCell = Convert.ToInt32(tc.Text);
                int thrsVal = Convert.ToInt32(TextBox1.Text);

                if (tblCell < thrsVal)
                {
                    tc.CssClass = "red";
                }
                else if (tblCell == thrsVal)
                {
                    tc.CssClass = "green";
                }
                else if (tblCell > thrsVal)
                {
                    tc.CssClass = "yellow";
                }
                else
                {

                }
                //Add Columns
                tr.Cells.Add(tc);
            }
            //Add Rows
            tbl.Rows.Add(tr);
        }
    }

    protected void btnGo_Click(object sender, EventArgs e)
    {
        CreateTable();
    }
4

1 回答 1

0

使用 ajax 更新面板和计时器控件 http://msdn.microsoft.com/en-us/library/cc295400.aspx

看看这个教程

于 2013-09-01T16:32:46.243 回答