如何使用.Net 3.5配置AntiXSS?
您好,我正在使用 Ajax HtmlEditorExtender 作为我的 TextBox 之一。强烈建议使用 AntiXSS Sanitizer。以下是我在 web.config 中添加的内容。
<configSections>
<sectionGroup name="system.web">
<section name="sanitizer" requirePermission="false" type="AjaxControlToolkit.Sanitizer.ProviderSanitizerSection, AjaxControlToolkit"/>
</sectionGroup>
</configSections>
<system.web>
<compilation targetFramework="3.5" debug="true"/>
<sanitizer defaultProvider="AntiXssSanitizerProvider">
<providers>
<add name="AntiXssSanitizerProvider" type="AjaxControlToolkit.Sanitizer.AntiXssSanitizerProvider"></add>
</providers>
</sanitizer>
</system.web>
但我的 web.config 中有两个错误。 (1) 未声明“targetFramework”属性。 (2) 元素“system.web”具有无效的子元素“sanitizer”。
谁能告诉我如何修复它们?
Hi I am using Ajax HtmlEditorExtender for my one of TextBox. It is strongly recommended to use the AntiXSS Sanitizer. Following is what I added in my web.config.
<configSections>
<sectionGroup name="system.web">
<section name="sanitizer" requirePermission="false" type="AjaxControlToolkit.Sanitizer.ProviderSanitizerSection, AjaxControlToolkit"/>
</sectionGroup>
</configSections>
<system.web>
<compilation targetFramework="3.5" debug="true"/>
<sanitizer defaultProvider="AntiXssSanitizerProvider">
<providers>
<add name="AntiXssSanitizerProvider" type="AjaxControlToolkit.Sanitizer.AntiXssSanitizerProvider"></add>
</providers>
</sanitizer>
</system.web>
But I got two errors in my web.config.
(1) The 'targetFramework' attribute is not declared.
(2) The element 'system.web' has invalid child element 'sanitizer'.
Can anyone tell me how to fix them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
targetFramework
属性是在 .NET 4.0 中引入的,如果您收到... is not statements
错误,那么它可能表示您的 AppPool您的应用程序正在运行 .NET 2.0 框架。要解决此问题,您可以:
在 IIS 中,将 AppPool 的 .NET Framework 版本更改为
.NET 4.0,或选择配置为使用的其他 AppPool
.NET 4.0
或
从您的应用程序中删除
targetFramework
属性web.config,在这种情况下 ASP.NET 将默认为任何版本
您正在使用的 AppPool 已配置为使用。
The
targetFramework
attribute was introduced in .NET 4.0, if you're getting the... is not declared
error it probably means the AppPool you're running your application under is running the .NET 2.0 framework.To fix this you can either:
In IIS, change the version of the .NET framework for the AppPool to
.NET 4.0, or select a different AppPool that is configured to use
.NET 4.0
or
Remove the
targetFramework
attribute from yourweb.config, in which case ASP.NET will default to whichever version
the AppPool you're using is configured to use.