Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Editor for .NET
»
Spell check: A potentially dangerous Request.Form value was detected from the client (CurrentText="<DIV>hallo</DIV>")
Spell check: A potentially dangerous Request.Form value was detected from the client (CurrentText="<DIV>hallo</DIV>")
Last post 02-17-2011, 2:06 PM by
frJericho
. 2 replies.
Sort Posts:
Oldest to newest
Newest to oldest
Previous
Next
02-09-2011, 4:55 AM
66128
frJericho
Joined on 05-02-2010
Posts 169
Spell check: A potentially dangerous Request.Form value was detected from the client (CurrentText="<DIV>hallo</DIV>")
Reply
Quote
I just upgraded to latest version and I get this error when I click on the spell check button. This used to work without any problem previously.
System.Web.HttpRequestValidationException (0x80004005): A potentially dangerous Request.Form value was detected from the client (CurrentText=
"<DIV>hallo</DIV>"
).
at System.Web.HttpRequest.ValidateString(String value, String collectionKey, RequestValidationSource requestCollection)
at System.Web.HttpRequest.ValidateNameValueCollection(NameValueCollection nvc, RequestValidationSource requestCollection)
at System.Web.HttpRequest.get_Form()
at System.Web.HttpRequest.get_HasForm()
at System.Web.UI.Page.GetCollectionBasedOnMethod(Boolean dontReturnNull)
at System.Web.UI.Page.DeterminePostBackMode()
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
at System.Web.UI.Page.ProcessRequest()
at System.Web.UI.Page.ProcessRequest(HttpContext context)
at ASP.PopUpSpell.ProcessRequest(HttpContext context)
in
c:\Users\MyUser\AppData\Local\dftmp\s0\deployment(83)\res\deployment(83).DataBrokerFull.WebRoleDataBroker.0\AspNetTemp\aspNetTemp\root\a924bda9\f8932641\App_Web_n2qpttxo.2.cs:line 0
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
How can I resolved this problem?
Filed under:
spell checker
02-11-2011, 8:41 PM
66180
in reply to
66128
Kenneth
Joined on 02-13-2008
Posts 3,886
Re: Spell check: A potentially dangerous Request.Form value was detected from the client (CurrentText="<DIV>hallo</DIV>")
Reply
Quote
hi frJericho,
Do you using ASP.NET 4.0? If so, please add the code below in your web.config and try again.
<httpRuntime requestValidationMode=″2.0″ />
Regards,
ken
02-17-2011, 2:06 PM
66286
in reply to
66180
frJericho
Joined on 05-02-2010
Posts 169
Re: Spell check: A potentially dangerous Request.Form value was detected from the client (CurrentText="<DIV>hallo</DIV>")
Reply
Quote
Thanks, that solved the problem.