这是我的问题:
当我在C#中创建表时,我想为每个单元格添加不同的CSS样式.
while(DR.Read()){
TableRow linha1 = new TableRow();
cel1 = new TableCell();
cel2 = new TableCell();
cel3 = new TableCell();
cel4 = new TableCell();
cel1.Controls.Add(new LiteralControl(DR.GetValue(0).ToString()));
cel2.Controls.Add(new LiteralControl(DR.GetValue(1).ToString()));
cel3.Controls.Add(new LiteralControl(DR.GetValue(2).ToString()));
cel4.Controls.Add(new LiteralControl(DR.GetValue(3).ToString()));
linha1.Controls.Add(cel1);
linha1.Controls.Add(cel2);
linha1.Controls.Add(cel3);
linha1.Controls.Add(cel4);
Tab_artigos_all.Controls.Add(linha1);
}
Run Code Online (Sandbox Code Playgroud)