我用asp的CheckBoxList有這種結果 ASP CheckBoxList的項目不正確渲染文本
但使用HTML標記爲CheckBoxList的項目,ASP是將其解釋爲HTML。它適用於簡單的文本。這是我的結果。
,這裏是申報和裝訂方法
<asp:CheckBoxList ID="chklstreponse" runat="server">
</asp:CheckBoxList>
DataTable dtreponse = gq.GetRandom_Responses(Convert.ToInt32(idquest.Value));
chkList.DataSource = dtreponse;
chkList.DataTextField = "libelle";
chkList.DataValueField = "id";
chkList.DataBind();
您的第一個答案適用(編輯前)。需要在所有可數據行上應用System.Net.WebUtility.HtmlEncode,並將其作爲數據源 –
確定嗎?我試過了,它不適合我... – VDWWD
是的,它適合我。我v'e在你的回答中加入了一些代碼 –