Trying to figure out which makes more sense
<%foreach (var item in Model.items)
{
%>
<tr>
<td>
<% if (!item.isMgmt)
{ %>
<a href="/MVC/AzureMail/Unfiled/<%:item.uName %>">
<%:item.uName%></a>
<% }
else
{ %>
<%:item.uName %>
<% } %>
</td>
</tr>
<% } %>
or
<%foreach (var item in Model.items)
{
%>
<tr>
<td>
<% if (!item.isMgmt)
{ %>
<a href="/MVC/AzureMail/Unfiled/<%:item.uName %>">
<% } %>
<%:item.uName%>
<% if (!item.isMgmt)
{ %>
</a>
<% } %>
</td>
</tr>
<% } %>