Am trying to set a new date for Calendar object on ASP.NET , but nothing changed. Here is my code :
protected void Page_Load(object sender, EventArgs e)
{
if (Page.IsPostBack)
{
cld_birth.SelectedDate = new DateTime(2003, 1, 1);
}
}
Try setting the
VisibleDateas well: