florencebush Report post Posted May 28, 2015 Before, I host at asphostportal.com, I can setup globalization settings in the web.config in order to change the UICulture to en-US. For example: <system.web> <globalization culture="en-US" uiCulture="en-US" /> </system.web> How can I do the same things in ASP.NET 5 (ASP.NET MVC 6) equivalently? Share this post Link to post Share on other sites
brianmanee Report post Posted April 28, 2016 Either add the following to your web.config file: <system.web><globalization culture="en-US" uiCulture="en-US" /></system.web> or you can add this statement on the page: <%@ Page uiCulture="en-US" culture="en-US" %> Hope this will work. More about....Globalization and Localization Brian Share this post Link to post Share on other sites