<%: is a new way to automatically HTML encode your data. Article from Haacked on it. New to .NET 4.0.
                  Dustin Laine
                   2010-09-03 21:10:36
                
              <%: is a new way to automatically HTML encode your data. Article from Haacked on it. New to .NET 4.0.
<%: "some string" %>
is equal to:
<%= Html.Encode("some string") %>