DayPilot - Open-Source Outlook-Like Calendar/Scheduling Control for ASP.NET
Try the online demo: AJAX-style event creating, moving, resizing, and deleting • Context menu • Day view • Work week view • Week view • Month view • Horizontal/vertical resources view • PostBack/AJAX/JavaScript event handling • Binding to XmlDataSource, SqlDataSource, DataTable, ArrayList • Custom event formatting • UpdatePanel compatibility

HOWTO: Add resources programmatically

Applies to: DayPilotScheduler

The resources can be declared in the ASPX page statically:

<DayPilot:DayPilotScheduler ID="DayPilotScheduler1" runat="server" ... >
<Resources>
<DayPilot:Resource Name="Room A" Value="A" />
<DayPilot:Resource Name="Room B" Value="B" />
<DayPilot:Resource Name="Room C" Value="C" />
<DayPilot:Resource Name="Room D" Value="D" />
<DayPilot:Resource Name="Room E" Value="E" />
<DayPilot:Resource Name="Room F" Value="F" />
<DayPilot:Resource Name="Room G" Value="G" />
<DayPilot:Resource Name="Room H" Value="H" />
</Resources>
</DayPilot:DayPilotScheduler>

You can also add them dynamically using the Resources collection:

DayPilotScheduler1.Resources.Add(new Resource("Room A", "A"));

DayPilot Pro is an advanced DayPilot edition. You can check a thumbnail overview of the most interesting features. There is also an online demo with all the features working (including the AJAX features). If you want to test the design-time support and API you can download a fully functional trial version. And if you like it, you can buy a full version with source code and 12 months of upgrades and support (with a 30-days money back guarantee).

DayPilot Lite is a do-it-yourself open-source edition of DayPilot. Although it misses some DayPilot Pro features, there are thousands of developers using it to build calendar, personal scheduling, and resource booking applications.

Questions or suggestions? Try DayPilot forums or contact us directly.