1
項目我有一個綁定到數據表中的單選按鈕列表。在數據表中,列中存在圖像的URL和具有描述的另一列。ASP.Net添加圖片到RadioButtonList的負載
下面是什麼,我現在在做什麼(儘管不工作):
foreach (acryliccolor scurrent in ssmacryliccolor)
{
DataRow dr = dt.NewRow();
dr["TEXT"] = "<img src=\"\\colorswatches\\" + scurrent.SwatchURL + "\" alt=\"\" border=\"0\" /><span style=\"margin-right:21px;\"></span>" + scurrent.Color;
dr["VALUE"] = "ID|SC_" + scurrent.ID.ToString() + ";CSID|" + current.ID.ToString() + ";JS|radiosimple(this)";
dt.Rows.Add(dr);
}
this.rblAcrylicColors.DataSource = dt;
this.rblAcrylicColors.DataTextField = "TEXT";
this.rblAcrylicColors.DataValueField = "VALUE";
this.rblAcrylicColors.DataBind();
如何添加圖像旁邊的每個單選按鈕項目的描述?