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 x xss protection?
Which dll handles the request of .aspx page?
Explain asp.net web forms.
Explain the difference between Repeater and Data list control in ASP.NET?
How Session use Cookies in State Management?
What is the concept of view state in asp.net?
Can you explain one critical mapping? Performance issue which one is better?
What is viewstate? In which event of the page life cycle, is the viewstate available?
Explain what does wsdl stand for?
Describe state management in asp.net?
What are the new navigation controls in asp.net 2.0?
Where code pages are used?
What is .net remoting?
How would you get asp.net running in apache web servers? Explain it's limitations.
Are there any resources for drop-in replacements for the default css that comes with the ASP.NET Website template?