How do you set language in web.cofig ?
Answer Posted / ram
? To set the UI culture and culture for all pages, add a
globalization section to the Web.config file, and then set
the uiculture and culture attributes, as shown in the
following example:
<globalization uiculture="es" culture="es-MX" />
? To set the UI culture and culture for an individual page,
set the Culture and UICulture attributes of the @ Page
directive, as shown in the following example:
<%@ Page UICulture="es" Culture="es-MX" %>
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
Explain Life cycle of ASP.NET page when a request is made.
Is asp.net a programming language?
What is a uri query?
What are the disadvantages of asp.net?
How many types of session state management options available in asp.net?
Why session is used in asp.net?
What is state management react?
Is session server side or client side?
Explain the difference between or and orelse?
What is intrinsic objects in asp.net?
Define authentication and authorization.
What is the Difference between MVC And MVP design pattrens
Whats the difference between registerclientscriptblock, registerclientscriptinclude and registerclientscriptresource?
What does occur first in ASP.Net, Authentication or Authorization?
Can we use a static function with a non-static variable?