Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How do you set language in web.cofig ?

Answers were Sorted based on User's Feedback



How do you set language in web.cofig ?..

Answer / 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

How do you set language in web.cofig ?..

Answer / shenil tom

add a
<system.web>
<globalization uiculture="" culture="" />

in the web. config section

or set both through dynamic coding..

Eg:
set uiculture in InitializeCulture page method override.
protected override void InitializeCulture()
{
this.UICulture = "he";
}

Is This Answer Correct ?    10 Yes 0 No

How do you set language in web.cofig ?..

Answer / 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

More ASP.NET Interview Questions

main difference between asp.net2.0,asp.net1.1,asp.net1.0

15 Answers   Inflexion, Infosys, iSoft, Microsoft, Prakruthi,


What is sta?

0 Answers  


What is the sequence in which ASP.NET events are processed?

0 Answers  


Define reflection in .net?

0 Answers  


What r Callbacks in ASP.NET?

1 Answers  


Difference between ASP Session and ASP.NET Session?

2 Answers  


Describe the disadvantage of cookies.

0 Answers  


What is csrf attack in asp.net?

0 Answers  


Can you clarified A Web service can only be written in .NET or not?

0 Answers   Siebel,


Explain the steps to be followed to use passport authentication.

0 Answers  


Usage of web.configuration ?

3 Answers   Microsoft,


Explain the difference between page.registerclientscriptblock and page.registerstartupscript?

0 Answers  


Categories