Matthew van Eerde wrote:
entirely appropriate to turn off validation (suppressing the XSS heuristics)
Calling it "heuristics" is a stretch

Validation practically amounts to:
String request = Request.QueryString || Request.GetStream().ToString();
if( String.IndexOf('<') != -1 ) throw new Exception();
It's like calling a system where the highest earners get fired an "algorithm"

BTW Matt, been in a C9 video yet?