In an Asp.net Mvc application all string output is unescaped by default either you remember to escape everything with HTTPUtility or you open yourself up to XSS attacks.
Now I'm a forgetful guy so I'm looking for a solution that helps me "not forget" to escape all my strings for me.
Can anybody share any techniques they've used make escaping all Asp.net MVC output easier?