>>I want to insert C1WebSchedule and C1WebCalendar in two different pages.
You can use session variables to save the selected date across any number of pages
Page 1 with WebCalendar:
Session("Date") = C1WebCalendar1.SelectedDate
Page 2 with WebSchedule:
C1WebSchedule1.SelectedDate = Session("Date")
>>The property from C1WebSchedule SelectedDates is readonly.
How can I insert more than one selected dates?
You can add to the dates collection: C1WebSchedule1.SelectedDates.Add(Session(
"Date"))
Hope that helps,
Greg L