Replaced Html.Encode with the new <%: %> syntax for auto encoding

--HG--
branch : dev
This commit is contained in:
Phil Haack
2010-06-08 22:44:30 -07:00
parent 521ba68b61
commit 7108d92147
68 changed files with 117 additions and 117 deletions

View File

@@ -22,10 +22,10 @@
{ %>
<tr>
<td>
<%=Html.Encode(row.User.UserName)%>
<%: row.User.UserName %>
</td>
<td>
<%=Html.Encode(row.User.Email)%>
<%: row.User.Email %>
</td>
<td>
<%=Html.ActionLink(T("Edit").ToString(), "Edit", new { row.User.Id })%> |