Row = new TableRow() ;
Row.Height=10;
Cell1 = new TableCell() ;
Cell1.Text = reader["WEBBASKET04"].ToString() ;
Cell1.BorderWidth = 0 ;
Cell1.Width = 200;Row.Cells.Add(Cell1) ;
Table1.Rows.Add(Row) ;

俺这样加了一行,
1.可就是行高度控制不了,“Row.Height=10 Or = 20 Or = 40;”不起作用 应该如何写?
2.行的背景颜色设置问题, Cell2.BackColor = Color.CornflowerBlue; 假如我想将背景颜色设为
  “#000000”这种形式,该如何写?刚转到.net写东西好不顺手,请大家多多关照。  -_-