ASP.NET Calendar control

  • Thread starter Thread starter 515331Jack3410
  • Start date Start date
5

515331Jack3410

Is it possible to change the Calendar's control days and months names?
 
If what you want to do is set the calendar's day/month display
to a different language, set the page culture you want the calendar
to be displayed in to the culture you want to display.

<%@ Page Language="VB" Culture="es-DO" uiculture="es-DO" %>
<%@ Page Language="VB" Culture="en-US" uiculture="es-DO" %>
<%@ Page Language="VB" Culture="de-DE" uiculture="es-DO" %>

....etc.

If you set a culture which uses a different character set,
make sure you have support for that language installed.




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

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

Back
Top