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
Which two new properties are added in asp.net 4.0 page class?
Explain exception filters?
How is my content secured from unauthorized access?
What is the difference between the response.write() and response.output.write() methods?
What is sql data source control in asp.net?
How can I create master page in asp net?
About CLR, reflection and assemblies?
What is data grid view in asp.net?
What is a postback in asp net?
how to elimainte the similar data from the different tables
Is there any property names “isnavigating”?
How can we make sure that Web API returns JSON data only?
What is base class of .net?
What are the properties of the eventargs argument when capturing keyboard events?
What is tracing? Where is it used?