创建和刷新占位符的最佳选择是什么?

时间:2013-09-01 15:35:00

标签: c# asp.net timer placeholder timing

我需要使用CreateTable方法创建我的表,然后我需要每隔几秒刷新所有值,我尝试使用System.Threading.Thread.Sleep并使用Timers。但是由于各种各样的事情我无法让它工作,例如表格没有显示或只是循环太快,我最好的选择是什么?对任何建议开放,也就是使用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();
    }

1 个答案:

答案 0 :(得分:0)

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

查看本教程