网页中文本框内容出现有HTML或Javascript等字符串时,系统会认为是危险性值, 跳出 "从客户端(****)中检测到有潜在危险的 Request.Form 值。"的错误。
解决方案 . 在web.config 的<system.web> 内加入
<pages validateRequest="false"/>
如
<system.web>
<compilation debug="true" targetFramework="4.5.2" /> <pages validateRequest="false"/> //新加入语句 <httpRuntime targetFramework="4.5.2" /> </system.web>