Download
Download the source code (370 kB). Compare features with DayPilot Pro.
DayPilotLiteMvc-1.5.434.zip
HomeCalendarMonthScheduler
AJAX day/week calendar.
Note: The Calendar can be initialized using a jQuery plugin.

Source

<div id="dpc"></div>

<script type="text/javascript">
  $(document).ready(function() {
    dpc = $("#dpc").daypilotCalendar({
      backendUrl: '@Url.Content("~/Calendar/Backend")',
      viewType: "Week",
      timeRangeSelectedHandling: "JavaScript",
      onTimeRangeSelected: function(start, end) { createEvent(start, end); },
      eventMoveHandling: "CallBack",
      eventResizeHandling: "CallBack"
    });
  });
</script>