for(int m=0;m<3;m++)
{
TextBox tb=new TextBox();
tb.ID="tb"+m;
tb.Text="tb"+m;
TableCell tc=new TableCell();
tc.Controls.Add(tb);
TableRow tr=new TableRow();
tr.Cells.Add(tc);
card.Rows.Add(tr);
this.PlaceHolder1.Controls.Add(card);
}
在页面上显示的只有一列,4个控件,  怎样才能显示为一行???