Change language in Calendar control

M

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?
 
J

Juan T. Llibre

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" %>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,262
Messages
2,571,052
Members
48,769
Latest member
Clifft

Latest Threads

Top