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


Please Help Members By Posting Answers For Below Questions

What is cache in asp net?

745


What is data cache in sql server?

842


What does the .webpart file do?

800


Describe session handling in a webfarm?

762


What are the different types of Caching techniques in ASP.NET?

801


What is server side session management?

736


What is http request and response?

753


Explain cashing in asp.net.

744


What is & in a url?

739


What is the full meaning of asp.net?

731


What’s difference between “optimistic” and “pessimistic” locking?

825


What is preprocessor in .net? Where it use?

740


What are the disadvantages of view state?

846


What is the use of placeholder control? Can we see it at runtime?

829


How do you change the session time-out value?

803