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 are query strings used for?
What is the use of view state?
What is difference between URL and URI?
What are type/key pairs in client script registration? Can there be 2 scripts with the same type/key pair name?
What is postback and autopostback in asp.net?
How information about the user's locale can be accessed?
What is the use of execute non query in asp.net?
What are the disadvantages of view state?
Which asp.net objects encapsulate the state of the client and the browser?
What is form submit?
Can master pages be nested?
What setting must be added in the configuration file to deny a particular user from accessing the secured resources?
Define what is razor? : asp.net mvc
What is latest version of asp.net mvc? : Asp.Net MVC
What symbol specifies the beginning of a query string?