close

九九乘法表.PNG   

protected void Page_Load(object sender, EventArgs e)
    {
        Table mytable = new Table();
        mytable.GridLines = GridLines.Both;
        Page.Controls.Add(mytable);
        for(int i = 1; i < 10; i++)
        {
            TableRow myrow = new TableRow();
            mytable.Rows.Add(myrow);
            for (int j = 1; j < 10; j++)
            {
                TableCell mycell = new TableCell();
                mycell.Text = j + "×" + i + "=" + i * j;
                myrow.Cells.Add(mycell);
            }
        }

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 ylw1125 的頭像
    ylw1125

    程式搜集分享精靈

    ylw1125 發表在 痞客邦 留言(0) 人氣()