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 is better asp.net or php?
What is dynamic web page with example?
What's the use of formatters in .net?
what is loosely coupled solution? How it can be used?
Why is global asax is used for?
How would you get asp.net running in apache web servers?
What is data reader in asp.net?
How do you use viewstate?
Can I read the hard disk serial # of the client computer using asp.net?
Define asp.net caching?
From which base class all web forms are inherited?
What’s the catch?
Explain global assembly cache.
What is autopost?
What is the life cycle of an asp.net page?