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" <(E-Mail Removed)> wrote in message news:fm4vp6$vmr$(E-Mail Removed)...
>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?
>