Ok here's one I have had a hard time getting a straight answer for. I'm trying to black out 14 days from todays date on my calendarextender. I have this;
tbDateOfDelivery_CalendarExtender.StartDate = DateTime.Now
tbDateOfDelivery_CalendarExtender.EndDate = DateTime.Now.AddDays(14)which will blackout all dates except for the 14 days starting with today. However, I want the opposite of what this is doing and blackout ONLY those 14 days.