本文介绍了什么是从客户端的错误信息检测到有潜在危险的Request.Form值的含义的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是想通过使用 control.It是一个文本编辑器,我的web项目发送电子邮件。但我得到这个错误。

I was trying to send an email via my web project using Free text box control.It is an text editor . but I've got this error.

从客户端检测到有潜在危险的Request.Form值(FreeTextBox1 =你好我亲爱的)。
我设置了ValidateRequest =假,我设置了isbodyHtml = TRUE。但它不工作。

A potentially dangerous Request.Form value was detected from the client (FreeTextBox1="hello my dear").I set the ValidateRequest=false and I set the isbodyHtml=true. but It doesn't work .

我应该怎么办?

推荐答案

请参阅关于这一问题的答案是:

Please see the answer on this question:

ValidateRequest="false"在Asp.Net不起作用4

这是在.NET 4.0中的变化。

This is a change in .net 4.0.

这篇关于什么是从客户端的错误信息检测到有潜在危险的Request.Form值的含义的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 06:18