2011-05-12 63 views
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(); 

如何添加圖像旁邊的每個單選按鈕項目的描述?

回答

0

您是否嘗試過動態地添加項目到radiobuttonlist.Items收藏?

this.rblAcrylicColors.Items.Add(String.Format("<img src={0} />", "url")); 

也有你檢查從你正在試圖輸出HTML?那裏有img標籤嗎?