1
私はテーブルセルを作成していますが、画像は必要ですが、画像の下には説明があります。だから、私はこれを試みた:TableCellの制御位置
TableCell cell = new TableCell();
ImageButton i = new ImageButton
{
ImageUrl = image.fullThumbPath,
PostBackUrl =
"~/fulldisplay.aspx?imageId=" + image.visibleId + @"&r=" +
GlobalVariables.RandomString(5)
};
cell.Controls.Add(i);
Label l = new Label
{
Text = image.description
};
l.Style.Add("font-weight", "bold");
cell.Controls.Add(l);
row.Cells.Add(cell);
しかし、私は結局のところ画像であり、画像にはラベルである。ラベルが画像の下にあることを私はどのように保証するのですか?
を追加することはできません。