I am trying to make a specialday to recurr every other week. How can I accomplish this programatically?
What I have so far is:
What I have so far is:
| RadCalendarDay day = new RadCalendarDay(); |
| day.Date = Convert.ToDateTime("2008-09-26"); |
| day.Repeatable = Telerik.Web.UI.Calendar.RecurringEvents.Week; |
| RadCalendar1.SpecialDays.Add(day); |