Search code examples
c#asp.net-mvcglobalization

I want to change the currency type of my model using globalization


This is my model I actually want to be able to display the currency as Rands (south African Currency)

[DataType(DataType.Currency)]    
 public decimal Price { get; set; }

Solution

  • Thanks guys I found a solution already..

     <system.web>
          <globalization culture="en-ZA" uiCulture="en-ZA" />
    <system.web>