Suppose I have Calender and and I want to select multiple date and display in label.
I have use following code but it is not working properly. Please correct it
lblMultipleDate.Text = Calendar1.SelectedDates[0].ToShortDateString();
Label2.Text = Calendar1.SelectedDates[Calendar1.SelectedDates.Count-1].ToShortDateString();
Here is a link on how to select multiple dates in Calendar control:
Calendar control with multiple date selections
Hopefully, it helps.