我正在開發一個Web應用程序。關於這個問題的過程是我使用實體框架模型從數據庫中提取用戶評論。我正在使用列表視圖來顯示客戶名稱,評級和評論。 問題是我正在使用名爲HTMLEditor的Ajax工具包控件在數據庫中存儲註釋,所以當我必須顯示註釋時,我需要相同的控件,即HTML編輯器。現在,當我使用下面的代碼來創建的ItemTemplate爲ListView,AJAX工具包和列表視圖
<ItemTemplate>
<tr style="background-color:#EDECB3;color: #000000;">
<td><%# Eval("CustomerName")%></td>
<td> <img src='Styles/Images/ReviewRating<%# Eval("Rating") %>.png' alt="">
<br />
</td>
<td> <cc1:Editor ID="Comments" runat="server" Text="<%#Eval("Comments") %>"/>
</td>
</tr>
</ItemTemplate>
一切工作除了線
<td> <cc1:Editor ID="Comments" runat="server" Text="<%#Eval("Comments") %>"/>
</td>
上面說的是服務器標記的格式不正確。請幫忙。
更新錯誤:我添加了nounicode =「true」。我遇到的錯誤是
Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "AjaxControlToolkit.Properties.Resources.NET4.resources" was correctly embedded or linked into assembly "AjaxControlToolkit" at compile time, or that all the satellite assemblies required are loadable and fully signed.
可以肯定的是,您是否曾嘗試刪除該標籤並使其正常工作?有時錯誤可能由另一部分產生。 – Boomer
是的它的工作。它也工作,如果我不使用控制,只是在內的EVAL表達式。 –