Click here to Skip to main content
15,893,487 members
Articles / Web Development / HTML

DayPilot - Building an Outlook-Like Calendar Component for ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.86/5 (120 votes)
8 May 2016Apache5 min read 475.8K   9K   391  
A good-looking ASP.NET control that shows events visually arranged in a day calendar. Includes design-time support and data binding.
<?xml version="1.0" standalone="yes"?>
<Navigation>
  <Item>
    <class />
    <url>Default.aspx</url>
    <title>This week</title>
  </Item>
  <Item>
    <title>CSS Themes</title>
  </Item>
  <Item>
    <url>ThemeWhite.aspx</url>
    <title>White Theme</title>
  </Item>
  <Item>
    <url>ThemeGreen.aspx</url>
    <title>Green Theme</title>
  </Item>
  <Item>
    <url>ThemeG.aspx</url>
    <title>Google-Like Theme</title>
  </Item>
  <Item>
    <url>ThemeTraditional.aspx</url>
    <title>Traditional Theme</title>
  </Item>
  <Item>
    <url>ThemeTransparent.aspx</url>
    <title>Transparent Theme</title>
  </Item>
  <Item>
    <title>Views</title>
  </Item>
  <Item>
    <url>DayView.aspx</url>
    <title>Day view</title>
  </Item>
  <Item>
    <url>WorkWeekView.aspx</url>
    <title>Work week view</title>
  </Item>
  <Item>
    <url>WeekView.aspx</url>
    <title>Week view</title>
  </Item>
  <Item>
    <url>Days.aspx</url>
    <title>Custom number of days</title>
  </Item>
  <Item>
    <title>Events</title>
  </Item>
  <Item>
    <class />
    <url>UpdatePanel.aspx</url>
    <title>ASP.NET AJAX (UpdatePanel)</title>
  </Item>
  <Item>
    <url>Events.aspx</url>
    <title>Event handling</title>
  </Item>
  <Item>
    <title>Appearance</title>
  </Item>
  <Item>
    <url>TimeFormat.aspx</url>
    <title>Time format (12/24 hours)</title>
  </Item>
  <Item>
    <url>NonBusinessHours.aspx</url>
    <title>Non-business hours behavior</title>
  </Item>
  <Item>
    <url>ShowHeader.aspx</url>
    <title>Header (on/off)</title>
  </Item>
  <Item>
    <url>HeaderDateFormat.aspx</url>
    <title>Header date format</title>
  </Item>
  <Item>
    <url>ShowHours.aspx</url>
    <title>Hour names (on/off)</title>
  </Item>
  <Item>
    <url>HourHeight.aspx</url>
    <title>Hour cell height</title>
  </Item>
  <Item>
    <title>Views</title>
  </Item>
  <Item>
    <class />
    <url>BindingXmlDataSource.aspx</url>
    <title>Binding to XmlDataSource</title>
  </Item>
  <Item>
    <url>BindingDataTable.aspx</url>
    <title>Binding to a DataTable</title>
  </Item>
  <Item>
    <url>BindingArrayList.aspx</url>
    <title>Binding to an ArrayList</title>
  </Item>
</Navigation>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Czech Republic Czech Republic
My open-source event calendar/scheduling web UI components:

DayPilot for JavaScript, Angular, React and Vue

Comments and Discussions