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
In order to bind the data from a data source to the Repeater control what property is set and what method must you call in your code,?
What is meant by web application?
What is asp according to you?
From which base class all web forms are inherited?
How do you store a value in viewstate and retrieve them?
How information about the user's locale can be accessed?
What are session cookies?
How can you handle errors in Web API?
What is runat?
Is a dll file an executable?
i want to implement grid view value in paypal site. so how to create this code in asp.net with C#
What is virtual directory in asp.net?
How to find last error which occurred?
Why session management is required?
Are xaml file compiled or built on runtime?