我想为我的 asp 网站使用 htmleditorextender,这就是我的 .aspx 文件中的内容:
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"></asp:ToolkitScriptManager>
<asp:TextBox ID="txtContent" runat="server" Width="400px" Heigh="400px" />
<asp:HtmlEditorExtender ID="hex" runat="server" TargetControlID="txtContent">
</asp:HtmlEditorExtender>
我的 web.conf 设置是:
<configuration>
<configSections>
<sectionGroup name="system.web">
<section name="sanitizer" requirePermission="false"
type="AjaxControlToolkit.Sanitizer.ProviderSanitizerSection, AjaxControlToolkit" />
</sectionGroup>
</configSections>
<system.web>
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
</assemblies>
</compilation>
<httpRuntime targetFramework="4.0"/>
<sanitizer defaultProvider="HtmlAgilityPackSanitizerProvider">
<providers>
<add name="HtmlAgilityPackSanitizerProvider" type="AjaxControlToolkit.Sanitizer.HtmlAgilityPackSanitizerProvider"></add>
</providers>
</sanitizer>
</system.web>
</configuration>
我还安装了 HtmlAgilityPack(尝试了最新版本和 1.4 版)。
但仍然收到此错误:
无法加载类型“AjaxControlToolkit.Sanitizer.AntiXssSanitizerProvider”。
还尝试添加 AntiXSSLibrary.dll 和 SanitizerProviders.dll,但仍然无法正常工作(不知道是否需要它们)。
我究竟做错了什么?
我也试过这个: 无法加载类型'AjaxControlToolkit.Sanitizer.AntiXssSanitizerProvider'。