How to change languages in asp web controls

  • Thread starter Thread starter Daniele Piccinini
  • Start date Start date
D

Daniele Piccinini

Hi All,

I've developed an asp .net application that use a web calendar control. On
my dev
machine i've Italian IIS and the text in the calendar control are visualized
in italian. I need to install the application on a customer machine with MS
Windows SBS 2003 English; in that case the text of the calendar control are
visualized in English. How can i switch this text to italian (IIS settings
?, App settings?, ...)

Thanks in advance.

- Daniele -
 
Thank you Kostja

I've set this in web.config file and works good :

<globalization
requestEncoding="utf-8"
responseEncoding="utf-8"
culture="it-IT"
uiCulture="it-IT"
/>

Thankk you

- Daniele -
 
Your message has been very useful,
i vote 10/10 for the message ;-)

Thanks.

- Daniele -
 
Back
Top