ASP.NET Calendar control

  • Thread starter Thread starter 515331Jack3410
  • Start date Start date
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/
===================================
 
Back
Top