Search code examples
razor

how to display amount with currency format in mvc3


I have created a table for tax ranges. Now I want to display the amounts formatted like so: $100,000. How can I do this?


Solution

  • You could try this format, and replace amount with custom value.

    @string.Format("{0:C}", amount);