Wednesday, November 20, 2013

how to change en-US dates to en-GB for asp.net? ( M/d/yyyy to dd/MM/yyyy)

  • en-US: M/d/yyyy (e.g. 3/14/2012)
  • en-GB: dd/MM/yyyy (e.g. 14/03/2012)
 do the following in web.config file


<configuration/>
<system.web/>
<globalization culture="en-GB"/> 
</system.web>
</configuration> 
 
 

 

No comments:

Post a Comment