I have a list of times in datetime format
and i want to know why they wont work in the timepicker on my page when i add them
| List<DateTime> list = new List<DateTime>(); |
| list.Add(DateTime.Parse("08:00")); |
| list.Add(DateTime.Parse("10:00")); |
| list.Add(DateTime.Parse("12:00")); |
| list.Add(DateTime.Parse("14:00")); |
| list.Add(DateTime.Parse("16:00")); |
| RadTimePicker1.TimeView.DataList.DataSource = list; |