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

Explain the concept of event bubbling in ASP.NET?

812


What is the main difference between Asp.net and Vb.net?

798


What would be salary for 8+ years of experience in ASP.NET in different metro city in india?

2200


How do you open a page in a new window?

763


Explain the difference between response.redirect vs server.transfer

866


What is the significance of ASP.NET routing?

844


In ViewState How much lifespan items stored?

827


What is the difference between a cookie and a pixel?

669


What is page request in asp.net?

729


What is app_code folder in asp net?

764


What are the event handlers that can be included in the Global.asax file?

821


Can you edit data in the Repeater control? Which template must you provide, in order to display data in a Repeater control? How can you provide an alternating color scheme in a Repeater control? What property must you set, and what method must you call in your code, in order to bind the data from some data source to the Repeater control?

780


Why is an object pool required?

818


What is round trip in asp.net?

693


How can we call webservices in Banking Applications? and where we are using it?

1748