Search Results

5
votes

ASP.net MVC custom string output overloaded operator <%=h

It's not so clean as an operator overload, but I used the following extension method: public static string Safe(this string sz) { return HttpUtility.HtmlEncode(sz); } …