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
Is session stored in browser?
What is the concept of postback in asp.net?
What types of data validation events are commonly seen in the client-side form validation?
What language does asp.net use?
Explain the use of fragment caching.
What are the different method of navigation in asp.net?
Explain the use of resource manager class in .net.
Define the term Web Garden?
What is postback pixel?
How asp.net mvc differs from asp.net web forms? : asp.net mvc
Explain ViewState?
Which class is used to send an email message from an ASP.NET Web page?
Can the validation occurs in server-side or client-side? If the validation occurs why should we do?
What are the uses of list view control in Asp.net?
What is the difference between Session and response.Redirect?