OleDbCommand oc = new OleDbCommand("select * from Table1", con);
OleDbDataAdapter da = new OleDbDataAdapter(oc);
DataTable dt = new DataTable();
da.Fill(dt);
//Here specify the calender day to mark
Telerik.WinControls.UI.RadCalendarDay day = new Telerik.WinControls.UI.RadCalendarDay();
for (int i = 0; i < dt.Rows.Count; i++)
{
DateTime year = Convert.ToDateTime(dt.Rows[i]["dob"]);
int year1 = (int)year.Year;
int month1 = (int)year.Month;
int day1 = (int)year.Day;
//the date to mark
day.Date = new DateTime(year1, month1, day1, 0, 0, 0, 0);
day.Recurring = Telerik.WinControls.UI.RecurringEvents.DayInMonth;
day.Selectable = false;
//add the specia day
radCalendar1.SpecialDays.Add(day);
}

Join the conversation! Your thoughts help the community grow.