I am writing a content management system using JQuery.ajax & C#. The JQuery calls an httpHandler and POSTS the html from an html editor JQuery plugin.
I get an error in the handler about unsafe content (html basically) but I dont want turn off validation for the whole page, just the handler (the handler is part of a web control not the page).
So, is it possible to turn the validation off just for one handler? Or do I need to encode the html on the client?
In the end I went for the encoding on the client at HTML-encoding lost when attribute read from input field
But I would still be interested in opinions on this approach