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
What is marshalling ? Is it a part of asp.net ?
What is the concepts of globalization and localization in .net?
What are the main advantages of using asp.net?
What are server activated objects?
How should I destroy my objects in asp.net?
Explain a program using razor view engine to create a simple application? : asp.net mvc
Explain how dot net compiled code will become platform independent?
What is the difference between mvc and asp.net? : Asp.Net MVC
What are strong names?
What are the types of session in asp.net?
What are the differences between the response.write() and response.output.write()?
What are the difference between overriding and overloading?
Explain the difference between debug.write and trace.write?
What is session and cookies in asp.net?
What are the benefits of Razor View?