This is what I have done in the past. I created a datatable with all the info I needed, including the date(s) needed. Then, in the
DayRender event of the calendar, I looped through all the rows in the datatable and compared the dates:
Code:
ForEach dr As DataRow In dt.Rows
IfDirectCast(dr("YourDateColumn"), DateTime).Date = e.Day.Date Then
.. DO STUFF HERE
End If