Skip to main content

How to Set the Culture and UI Culture for ASP.NET Web Page Globalization in Web.Config File.

Here i will explain how to set the culture and UI culture for asp.net web page Globalization using web.config File.

Just add this code in your web.config file.

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

Comments