我无法为这个主题写一个好的标题,因为我的问题有点奇怪。我在我的网站中使用 AjaxControlToolkit HTMLEditorExtender 来发送 HTML 格式的电子邮件。粗体、斜体、下划线等所有其他功能都可以正常工作,但是当我添加链接时,它会显示它的 HTML 代码,如下所示:
如您所见,BOLD正在工作,但锚标记以 HTML 代码格式显示。
扩展器和文本框的代码:
<asp:TextBox ID="TextBox2" runat="server" Height="376px"
TextMode="MultiLine" Width="795px"></asp:TextBox>
<asp2:HtmlEditorExtender ID="TextBox2_HtmlEditorExtender"
runat="server" Enabled="True" TargetControlID="TextBox2">
</asp2:HtmlEditorExtender>
谁能告诉我为什么会这样?这是扩展器的一些错误吗?