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
What are the elements of a website?
How does asp.net page work?
What are the features that make asp.net more used framework? : asp.net mvc
Why is this service branded with windows livetm?
Explain the difference between panel and groupbox classes using .net?
Where sessions are stored?
How do http sessions work?
Explain the difference between array and linkedlist?
Why do I get error message "could not load type" whenever I browse to my asp.net web site?
What is the difference between login controls and forms authentication?
Explain the difference between authentication and authorization.
Define secured sockets layer.
How does the iis work?
Can we add code files of different languages in app_code folder?
How can I configure asp.net applications that are running on a remote machine?