Hi,
I am displaying data in one of the table, i have one currency field. how do i format that field. i am using mvc with entity framework. here is my code
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Invoice ID</th>
<th>Gross Total</th>
</tr>
</thead>
<tbody>
@foreach (var Item in Model.Invoice.Items)
{
<tr>
<td>@Item.InvoiceID</td>
<td>@Item.GrossTotal</td>
</tr>
}
</tbody>
</table>
here i want to show the gross total as currency rather than just numbers. Thanks for your help
Go to the complete details ...