Table tb = new Table();
int row = 3; // 行数
int col = 4; // 列数
for(int i=0;i
tb.Rows.Add(tr);
for(int j=0;j
tr.Cells.Add(td);
td.Text = i.ToString();
}
}
1.可以页面中用js 生成
2.可以用后台服务器拼字符串
首先两个TEXTBOX,用来接受行和列的数量,
int hang = Convert.ToInt32(TextBox1.Text);
int lie = Convert.ToInt32(TextBox2.Text);
Response.Write("
"); Response.Write("表格内容"); Response.Write(" | ");
Table
tb
=
new
Table();
int
row
=
3;
//
行数
int
col
=
4;
//
列数
for(int
i=0;i
tr
=
new
TableRow();
tb.Rows.Add(tr);
for(int
j=0;j
td
=
new
TableCell();
tr.Cells.Add(td);
td.Text
=
i.ToString();
}
}