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 is cache in asp net?
What is data cache in sql server?
What does the .webpart file do?
Describe session handling in a webfarm?
What are the different types of Caching techniques in ASP.NET?
What is server side session management?
What is http request and response?
Explain cashing in asp.net.
What is & in a url?
What is the full meaning of asp.net?
What’s difference between “optimistic” and “pessimistic” locking?
What is preprocessor in .net? Where it use?
What are the disadvantages of view state?
What is the use of placeholder control? Can we see it at runtime?
How do you change the session time-out value?