How do you set language in web.cofig ?

Answer Posted / shenil tom

add a
<system.web>
<globalization uiculture="" culture="" />

in the web. config section

or set both through dynamic coding..

Eg:
set uiculture in InitializeCulture page method override.
protected override void InitializeCulture()
{
this.UICulture = "he";
}

Is This Answer Correct ?    10 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is marshalling ? Is it a part of asp.net ?

829


What is the concepts of globalization and localization in .net?

727


What are the main advantages of using asp.net?

767


What are server activated objects?

851


How should I destroy my objects in asp.net?

794


Explain a program using razor view engine to create a simple application? : asp.net mvc

722


Explain how dot net compiled code will become platform independent?

750


What is the difference between mvc and asp.net? : Asp.Net MVC

700


What are strong names?

789


What are the types of session in asp.net?

711


What are the differences between the response.write() and response.output.write()?

765


What are the difference between overriding and overloading?

710


Explain the difference between debug.write and trace.write?

729


What is session and cookies in asp.net?

757


What are the benefits of Razor View?

750