Click here to Skip to main content
15,901,666 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
Disable Future / Past Dates in telerik calendar
Posted
Comments
RadDatePicker or DateTimePicker?

Set MinDate Property to current date.

Check here-
RadDatePicker[^]
RadDateTimePicker[^]

Hope, it helps :)
 
Share this answer
 
Set the min date to today's date -
C#
protected void Page_Load(object sender, EventArgs e)
{
     RadDatePicker1.MinDate = DateTime.Today.Date;
}
 
Share this answer
 
Comments
Richard Deeming 9-Dec-15 12:03pm    
Isn't this the same as Solution 1?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900