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
Explain the concept of event bubbling in ASP.NET?
What is the main difference between Asp.net and Vb.net?
What would be salary for 8+ years of experience in ASP.NET in different metro city in india?
How do you open a page in a new window?
Explain the difference between response.redirect vs server.transfer
What is the significance of ASP.NET routing?
In ViewState How much lifespan items stored?
What is the difference between a cookie and a pixel?
What is page request in asp.net?
What is app_code folder in asp net?
What are the event handlers that can be included in the Global.asax file?
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?
Why is an object pool required?
What is round trip in asp.net?
How can we call webservices in Banking Applications? and where we are using it?