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 is asp net objects?
How do we implement bundling in MVC?
How can we implement a identity (sql server) call in an asp.net page?
How long does an http session last?
What is data grid view in asp.net?
How do I open an ashx file in windows 7?
What is active web page?
What is Partial PostBack in ASP.NET?
what are the events raised in asp.net page life cycle?in which stage view state can be loaded?
What are type/key pairs in client script registration? Can there be 2 scripts with the same type/key pair name?
What are different types of api?
What are the disadvantages of using session?
What is a 401 redirect?
What is redirectpermanent in asp.net?
How many types cache in asp net?