Hi,
I'm trying to find out if there is a shorter way of writing data to a view than what I am currently doing. This is what I currently have in my view:
<td>
<%
if (Model.AnnualIncome != null)
{
%>
<%: "R " + Model.AnnualIncome.ToString() %>
<%
}
%>
</td>
Is there a shorter way of displaying annual income to the screen than having all the <% %>?
Thanks