Change language in Calendar control
am 10.01.2008 12:26:37 von Marin
I have some Calendar controls on my asp.net page. My computer (localhost)
and my server is in Croatia, Europe. So calendar control have day in week
and month caption on Croatian language. I want to set up these controls on
English language. How to do that?
Re: Change language in Calendar control
am 10.01.2008 16:29:12 von nomailreplies
Set the culture to English in the page which hosts the calendar...
I use Spanish-Dominican Republic, so I use :
VB :
<%@ Page Language="VB" Culture="es-DO" %>
C# :
<%@ Page Language="C#" Culture="es-DO" %>
To use English, use :
VB :
<%@ Page Language="VB" Culture="en-US" %>
C# :
<%@ Page Language="C#" Culture="en-US" %>
If you want to use British English, use :
VB :
<%@ Page Language="VB" Culture="en-GB" %>
C# :
<%@ Page Language="C#" Culture="en-GB" %>
Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en espaƱol : http://asp.net.do/foros/
======================================
"Marin" wrote in message news:fm4vp6$vmr$1@sunce.iskon.hr...
>I have some Calendar controls on my asp.net page. My computer (localhost) and my server is in Croatia, Europe. So
>calendar control have day in week and month caption on Croatian language. I want to set up these controls on English
>language. How to do that?
>