Mega Code Archive

 
Categories / ASP.Net / Development
 

Set culture in the web config

<?xml version="1.0"?> <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">   <system.web>     <anonymousIdentification enabled="true"/>     <profile>       <properties>         <add            name="UserCulture"           defaultValue="en-US" />         <add            name="UserUICulture"           defaultValue="en" />       </properties>     </profile>   </system.web> </configuration>