我最近使用 c# 和 asp.net 构建了一个表,但我遇到了设计问题。
string name = Request.QueryString["name"];
AnimalsDB animal = new AnimalsDB();
DataSet ds = animal.GetFactByName(name);
TableRow rw = new TableRow();
TableCell tc1 = new TableCell();
Label l1 = new Label();
l1.Text = ds.Tables[0].Rows[0]["AName"].ToString();
Image image = new Image();
image.ImageUrl = ds.Tables[0].Rows[0]["Pic"].ToString();
image.Width = 250;
image.Height = 250;
Label l2 = new Label();
l2.Text = ds.Tables[0].Rows[0]["Fact"].ToString();
tc1.Width= 200;
tc1.Controls.Add(l1);
tc1.Controls.Add(image);
tc1.Controls.Add(l2);
rw.Cells.Add(tc1);
Table3.Rows.Add(rw);
表格有点杂乱无章,所有细节都出现在一行上,你知道如何对它进行排序和组织细节吗?(在我的情况下,我想显示 lable1 断线图像和断线,然后是第二个标签)。