没明白里边怎么解决的
在哪里 创建HtmlAttributeEncodingNot
1. 创建HtmlAttributeEncodingNot
public class HtmlAttributeEncodingNot : System.Web.Util.HttpEncoder { protected override void HtmlAttributeEncode(string value, System.IO.TextWriter output) { output.Write(value); } }
2. 在web.config中添加如下配置
<httpRuntime encoderType="HtmlAttributeEncodingNot"/>
在你的项目里新建一个名叫HtmlAttributeEncodingNot的类,内容就是上面的
Could not load type 'HtmlAttributeEncodingNot 看来我是想对了,但是提示这个呀
@Youngli: 你的类是创建在App_Code下吗?
Web.config添加的配置是不是在下面的位置:
<configuration> <system.web> <httpRuntime encoderType="HtmlAttributeEncodingNot"/> </system.web> </configuration>
@诶碧司: 不行,不过,我见有人说 encoderType="加上命名空间.HtmlAttributeEncodingNot"/>
把程序集引用进来。
@Launcher: 怎么引用进来,本人比较笨