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
How do we implement bundling in MVC?
What is diff. Between abstract class and an interface?
Differentiate between structure and class.
Can you use Web API with ASP.NET Web Form?
How can we provide the WebParts control functionality to a server control?
What is the difference between localization and globalization?
Which object encapsulates state or data of a user?
What are httphandlers and httpmodules and difference between them?
I am trying to implement sorting facility from client side code in GridView Control. So how can I fill up an Array inside client side code (using JavaScript), i want to assign my DataSet object declared and filled up on Server side(in code behind) to the array (on client side)
How to set the pane area to transparent of a scrollPane component.?
How to retrieve user name in case of Window Authentication?
What are server-side comments in ASP.NET?
Is asp.net mvc front end or backend? : Asp.Net MVC
What is meant by server side scripting?
What are the difference between overriding and overloading?