Dofs
Dofs

Reputation: 19197

A potentially dangerous Request.Form value was detected from the client

I am using CKEditor/CKFinder as wysiwyg editor on my MVC.NET site.

I have set [ValidateInput(false)] and it works when debugging it locally, but I receive the following error when I have published the site:

A potentially dangerous Request.Form value was detected from the client (message="<p>
<em>Testing</e...").

can anyone explain why the published site is different from the locally site, especially when I have set [ValidateInput(false)]?

*Update:*I am using .Net 3.5 so shouldn't [ValidateInput(false)] work out the box?

Upvotes: 11

Views: 14840

Answers (6)

Catch22
Catch22

Reputation: 3351

Have you tried setting the htmlEncodeOutput property?

CKEDITOR.replace('editor1', {
    htmlEncodeOutput: true });

This should encode the output and you should be able to avoid setting the requestValidationMode.

Documentation for it is here: ckEditor documentation

Upvotes: 27

Abhishek Thakur
Abhishek Thakur

Reputation: 21

Use Request.Unvalidated["myTextBox"]

for example,

var text = Request.Unvalidated["myTextBox"];

where "myTextBox" is the form field you want to allow HTML to be posted from.

Upvotes: 0

phuc.nx
phuc.nx

Reputation: 78

Add ValidateRequest="false" to your Page:

<%@ Page Language="C#" AutoEventWireup="false" Codebehind="MyForm.aspx.cs" Inherits="Proj.MyForm" ValidateRequest="false"%>

Or add to web.config if using .NET Framework 4.0 (Visual Studio 2010)

<httpRuntime requestValidationMode="2.0" />

Upvotes: 0

Abhishek Kanrar
Abhishek Kanrar

Reputation: 486

ValidateRequest="false" Add this in the particular Page.

Example:

Upvotes: 0

Dpk-Kumar
Dpk-Kumar

Reputation: 115

Just add an Annotation to the Post method Action as [ValidateInput(false)]

[HttpPost]
    [ValidateAntiForgeryToken]
    [ValidateInput(false)]
    public ActionResult Detail(ModelClass m)
    { return View(); }

Upvotes: 0

stian.net
stian.net

Reputation: 3963

Add this to your web.config:

<httpRuntime requestValidationMode="2.0" />

Upvotes: 7

Related Questions