include::../description.adoc[] include::../ask-yourself.adoc[] include::../recommended.adoc[] == Sensitive Code Example At Controller level: ---- [ValidateInput(false)] public ActionResult Welcome(string name) { ... } ---- At application level, configured in the Web.config file: ---- ... ---- == Compliant Solution At Controller level: [source,csharp] ---- [ValidateInput(true)] public ActionResult Welcome(string name) { ... } ---- or [source,csharp] ---- public ActionResult Welcome(string name) { ... } ---- At application level, configured in the Web.config file: [source,csharp] ---- ... ---- include::../see.adoc[] ifdef::env-github,rspecator-view[] ''' == Implementation Specification (visible only on this page) include::../message.adoc[] ''' == Comments And Links (visible only on this page) include::../comments-and-links.adoc[] endif::env-github,rspecator-view[]