I have a control on the front end of my site that allows logged in members to update content. This all works fine. At the top of my page I have a login status control that allows the member to logout.
My page contains 2 textareas that use ckeditor. These textareas are populated with content that the member can edit.
When the member logs out from this page, I get the following error:
A potentially dangerous Request.Form value was detected
from the client
(ctl00$ctl00$ctl00$ContentPlaceHolderDefault$mainContent$UpdateContent_3$txtShortDescription="<p>hello
world!!!</p...").
Any ideas as to why this is happening and a possible solution?
Error after logging out member
Hi all,
I have a control on the front end of my site that allows logged in members to update content. This all works fine.
At the top of my page I have a login status control that allows the member to logout.
My page contains 2 textareas that use ckeditor. These textareas are populated with content that the member can edit.
When the member logs out from this page, I get the following error:
A potentially dangerous Request.Form value was detected from the client (ctl00$ctl00$ctl00$ContentPlaceHolderDefault$mainContent$UpdateContent_3$txtShortDescription="<p>hello world!!!</p...").
Any ideas as to why this is happening and a possible solution?
Using Umbraco 6.1.6
Thanks
Yes. Are you hooking in to the umbraco pipeline? Are you saving data to a umbraco property value?
This is happening becuase you are trying to save data that contains script tags and this is being interpruted as an attack :)
Charlie.
is working on a reply...