Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
How can i disable dates that are less then today's date in a Calender Webserver Control
You simply create the DayRender event handler, and do a checking on the rendered date to make it selectable or not.
DayRender
void Calendar1\_DayRender(object sender, DayRenderEventArgs e) { e.Day.IsSelectable = (e.Day.Date >= DateTime.Now); }