本文介绍了从客户端检测到潜在危险的Request.Form值(ctl00 $ ContentPlaceHolder1 $ RichTextBox ="TEST!").的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在新项目中添加了tinymce3.5.7.它可以在本地服务器上准确运行,但是在联机状态下会产生以下错误.

从客户端检测到一个潜在危险的Request.Form值(ctl00 $ ContentPlaceHolder1 $ RichTextBox ="

TEST!

I added tinymce3.5.7 in my new project. it runs accurately in local server,but in online it produced the following error.

A potentially dangerous Request.Form value was detected from the client (ctl00$ContentPlaceHolder1$RichTextBox="

TEST!

推荐答案




这是正确的:


this is correct:

<system.web>
    <httpruntime requestValidationMode="2.0" />
</system.web>


这篇关于从客户端检测到潜在危险的Request.Form值(ctl00 $ ContentPlaceHolder1 $ RichTextBox ="TEST!").的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 06:19