I need to round off 4 digit decimal to 2 digits and show in MVC 3 UI
Something like this 58.8964 to 58.90
Tried following this How should I
Try like this:
@{ var format = String.Format("{0:0.00}", Model.TotalAmount); } @Html.TextBoxFor(m => m.TotalAmount, format)
Hope it helps.