那放在placeHolder又如何定位呢??可以在一个placeHolder里建若干个button,都定位.
如何实现啊??
thx.

解决方案 »

  1.   

    我也是这个问题,我也想到用table.
      

  2.   

    用table行,如果再不行的话,table里面加table就行了,我也是这样做的
      

  3.   

    webform的table控件添加不了button,而http控件的table在C#里面看不到啊.
    因为我现在的button是在C#里面动态创建的.
      

  4.   

    我不是用那哥webform的,说实在我懂怎么用这个control.
    我只是用Html那个table可以解决这个问题.我也想听那位大虾说说webfrom的table
    加control
      

  5.   

    你需要先加行,列,再加control
    TableRow TR = new TableRow();
    //第1列
    TableCell TD1 = new TableCell();
    TD1.CssClass = "ListCellTitle";
    TD1.HorizontalAlign = HorizontalAlign.Center;
    Label FieldNameLabel = new Label();
    FieldNameLabel.Text = "第xx"; TD1.Controls.Add( FieldNameLabel );
    TR.Cells.Add( TD1 );
    Table1.Rows.Add( TR );