Hi,
this is a little off topic, but i think you guys know best of it :-)
I have an aspx page with a calendar control. On PageLoad I set a date. But that date won't be marked? By setting VisibleDate i manage to show the appropriate month, however. But that was it. Any ideas why the control doesn't display the date set?
here is the code:
dateDateStart As Date = DateAdd(DateInterval.Month, -1, Now())
Protected Sub Page_Load
[...]
Me.Calendar1.SelectionMode = CalendarSelectionMode.Day
Me.Calendar1.VisibleDate = dateDateStart
Me.Calendar1.SelectedDate = dateDateStart
[...]
thanks,
felix