How do you set language in web.cofig ?
Answer Posted / shaik mujahid ullah
Setting up a language are of 2 types
one is compilation language of webapplication for which
you can try with this code
<configuration>
<system.web>
<compilation defaultLanguage"VB"></compilation>
</system.web>
</configuration>
Second is regional / culture language it can be set with
the following code
<system.web>
<globalization uiCulture="en" culture="en-GB" />
<!-- more stuff-->
</system.web>
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
Is it possible to create web application with both webforms and mvc?
Define xmlreader class.
What’s the difference between asp.net web forms and asp.net mvc?
What is the advantage of mvc over asp.net? : Asp.Net MVC
Why asp.net is better than php?
How many types of session state management options available in asp.net?
Securitywise What are the Enhancements in 2.0?
What is the purpose of App_Code folder in ASP.NET? Why we this?
What are Master Pages in ASP.NET?
Why cyclomatic complexity is important?
Which method do you use to kill explicitly a users session?
How to do parallel database export in remote SQL Server in ESSL time track. It is working for local server but not working for remote SQL Server
Is asp.net easy to learn?
Define managed code and managed data in .net?
What is difference between cache and session?