Use the "SelectionChanged" event of the calendercontrol to get the date while user is selecting the date
protected void Calendar1_SelectionChanged(object sender, EventArgs e)
{
DateTime selectedDate = Calendar1.SelectedDate;
string date = string.Empty;
string day = string.Empty;
string time = string.Empty;
date = selectedDate.ToShortDateString();
day = selectedDate.Day.ToString();
// If you want the week name use this statement. otherwise ignore
day = selectedDate.DayOfWeek.ToString();
time = selectedDate.ToShortTimeString();
}
-----
Suresh M
Gokul, if this helps please login to Mark As Answer. | Alert Moderator