Data-binding[Sample|Source|Documentation] DayWeekMonthList Su Mo Tu We Th Fr Sa 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 2Friday, May 22025 titleall-dayall-day events12 AM1 AM2 AM3 AM4 AM5 AM6 AM7 AM8 AM9 AM10 AM11 AM12 PM1 PM2 PM3 PM4 PM5 PM6 PM7 PM8 PM9 PM10 PM11 PMLoading...todayleftAprMay1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Junright Description This sample shows how to bind data to the C1EventsCalendar control. In order to bind the C1EventsCalendar to a data source, you need to follow these steps: Configure EventStorage. Add data source control to your page. Setup the event storage's DataSourceID property. If needed, fill the DataMember property. Generate Insert/Update/Delete commands if you wish to allow end-user to edit events. e.g.: Configure event storage data mappings. e.g.: <EventStorage DataSourceID="AccessDataSource_Events"> <Mappings> <IdMapping MappingName="AppointmentId" /> <StartMapping MappingName="Start" /> <EndMapping MappingName="End" /> <SubjectMapping MappingName="Subject" /> <LocationMapping MappingName="Location" /> <DescriptionMapping MappingName="Description" /> <ColorMapping MappingName="Color" /> </Mappings> </EventStorage> Configure CalendarStorage. Add data source control to your page. Setup the calendar storage's DataSourceID property. If needed, fill the DataMember property. Generate Insert/Update/Delete commands if you wish to allow end-user to edit calendars. Configure calendar storage data mappings. e.g: <CalendarStorage DataSourceID="AccessDataSource_Calendars"> <Mappings> <IdMapping MappingName="CalendarId" /> <LocationMapping MappingName="Location" /> <ColorMapping MappingName="Color" /> <DescriptionMapping MappingName="Description" /> <NameMapping MappingName="Name" /> <PropertiesMapping MappingName="Properties" /> <TagMapping MappingName="Tag" /> </Mappings> </CalendarStorage>