I'm converting an old classic asp website to asp.net.
The application is basically an extension of a tool set for a given set of users but it is hosted at an external vendor.
To perform a seamless transfer to this application it POSTS some xml data which is firing off the "potentially dangerous Request.Form value". I know I could turn off the validateRequest flag but I would rather not do this.
I have written an httpmodule which takes this data and uses it to authenticate the user, is it possible to use the same module, or a different module for that matter, to remove these "bad" values in the post data before that data is "validated"?
Otherwise if none of these ideas work, I am open to other suggestions.
Thanks.