hi, where can i find the property to set another date to the webmonthcalendar (codebehind , vb.net)?Greetings
Hello Martin,
You can change the SelectedDate:
DateTime dateTime = new DateTime(2010,7,24);
WebMonthCalendar1.SelectedDate = dateTime;
You can also set different FooterContent( by default showing the Today's day)
WebMonthCalendar1.FooterContent = "Today is 31-12-2010";
Let me know if you need further assistance