我在 c# 中创建了一个 5x10 矩阵。现在我想将这些值检索到 asp 中的 5x10 表中。只有 2 个可能的值“可用”和“不可用”。如果值为 1,则表格单元格背景应显示为绿色。如果值为 0,则表格单元格背景应显示为红色。我怎样才能做到这一点?以下是我迄今为止编写的将值从 DropDownList 插入矩阵的代码
protected void Button1_Click(object sender, EventArgs e)
{
String[][] matrix=new String[5][];
for(int i=0;i<5;i++)
{
matrix[i]=new String[10];
}
int q=1;
for (int i = 0; i <= 4; i++)
{
for (int j = 0; j <= 9; j++)
{
DropDownList tb = this.FindControl("DropDownList" + q) as DropDownList;
matrix[i][j] = tb.SelectedItem.Text;
q++;
}
}
为了将这些值检索回表中,如果值为“可用”,我不知道如何将单元格背景显示为绿色,如果值为“不可用”,则显示为红色。