Click here to Skip to main content
15,867,686 members
Articles / Web Development / ASP.NET

Event Calendar [ ASP.NET 2.0 / C# ]

Rate me:
Please Sign up or sign in to vote.
4.49/5 (62 votes)
18 May 2008CPOL4 min read 852.1K   38.7K   257   135
Basic Calendar Control of ASP.NET 2.0 can be extended to cater one of most frequent requirement of tracking events, project milestones, history, schedule etc.

Introduction

Tracking anything in dates is one of the common requirement now a days. Tracking events, project milestones, tracking history, tracking schedule etc etc. It was quite a complex job until the wonderful Calendar Control of ASP.NET 2.0. It is one of the Standard Server Side Web Control of ASP.NET 2.0, which when used properly can help in accomplishing the various requirements, tracking being one of them. Here we are going to see how can this Calendar control can help us in tracking the events.

Event Calendar 

One of best ways in which events can be displayed is by displaying the events by month. What it basically means is - display the complete month and display the events against each date. Here is how our Event Calendar is going to look like:

Screenshot - CalendarWithEventInColor.jpg

How can this be achieved  

It is quite simple and straight forward. ASP.NET Calendar control posses an event "DayRender" which has got "DayRenderEventArgs" as one of the parameters. This DayRenderEventArgs has got two very useful things - Day and Cell. Day is of the type "CalendarDay" and Cell is of the type "TableCell". Day can help us in identifying the day, date etc which it is going to render and Cell gives us handle to the table cell corresponding to that day. Now since we have handle to Table Cell of displaying Date, we can play with it to cater to our needs. For event Calendar we are simply going to use this event to add the event details in the Table Cells associated with the dates.

C#
CalendarDay d = ((DayRenderEventArgs)e).Day;
TableCell c = ((DayRenderEventArgs)e).Cell;

if ( !d.IsOtherMonth )
    c.Controls.Add(new LiteralControl(dr["EventDetails"].ToString()));

And thats it, we are done.

Event Calendar Control

If we are aware that we are going to use the same functionality again and again, it is better to make it a re-usable component. So here, we are going to extend the capabilities of basic ASP.NET 2.0 Calendar control. The basic requirement of data driven applications is that source of information basically is data store. It can be database, XML File, Excel or anything for that matter. Here we are going to limit our scope and going to implement the EventCalendar with ADO.NET DataTable as the source of data. Let us see the ingredients of this calendar control

  1. A class which extends System.Web.UI.WebControls.Calendar
  2. The necessary properties:

    • EventSource: DataTable with Event Details
    • EventStartDateColumnName: ColumnName of the Column of the type DateTime in the EventSource, which stores the Start Date associated with Events
    • EventEndDateColumnName: ColumnName of the Column of the type DateTime in the EventSource, which stores the End Date associated with Events
    • EventHeaderColumnName: ColumnName of the Column of the type String in the EventSource, which stores the Event Header,
    • EventDescriptionColumnName: ColumnName of the Column of the type String in the EventSource, which stores the Event Detailed Description,
    • ShowDescriptionAsToolTip: Boolean to determine whether to display Event Description as Tool Tip or not.
    • EventForeColor: ColumnName of the Column to specify the Fore ( Font ) Color for the event. We can specify any Color Name which belongs to System.Drawing.Color namespace.
    • EventBackColor: ColumnName of the Column to specify the Back Color for the event.We can specify any Color Name which belongs to System.Drawing.Color namespace.
  3. EventCalendarDayRender Event: Place where the actual logic to show the events in Calendar is implemented

This describes the skeleton for your EventCalendar Class. Refer to the EventCalendar.cs class file in the attached demo for complete implementation. By extending the control in such way we can keep the basic features provided along with the new features/capabilities that we need to cater to our requirements.

Version History

Version 3 

Support for Fore and Back Color for Events has been added. Click here to download its demo

Version 2

Support for Events which spills over more that one days has been added. Click here to download its demo

Version 1

Basic Event Calendar with support for Events which occurs on a single date Click here to download its demo

Wrapping Up

ASP.NET Controls are undergoing development and continuous evolution with each release, ASP.NET 2.0 Controls are no exception. These controls not only getting smarter and smarter, but also giving a developer better handle to its basic buidling blocks like TableCell of Calendar Control.

Please spare some time to rate and provide feedback about this article. Your couple of minutes can help in enhancing the quality of this article.

If interested, Click here to view all my published articles.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
.NET Professional, working with a leading global firm.

Primarily works in .NET using C# with Oracle and MS SQL Server 2000 as backend.

Learning .Net ...

[ My Linked In Profile ^ ]

Comments and Discussions

 
Questionhow can disable or remove the arrow marks starting Pin
Member 1051016831-Jan-22 23:20
Member 1051016831-Jan-22 23:20 
QuestionError Calendar1 does not exist Pin
AllenB197918-Nov-16 10:25
AllenB197918-Nov-16 10:25 
Questionhow do I print out a calendar control with the text in the day section? Pin
jeffery c13-Jun-15 5:21
jeffery c13-Jun-15 5:21 
GeneralEvent calender that is showing events and show tooltip on date on hover Pin
Member 1176044111-Jun-15 20:47
Member 1176044111-Jun-15 20:47 
QuestionEvent Calendar in asp.net Pin
Member 1176044111-Jun-15 20:44
Member 1176044111-Jun-15 20:44 
AnswerRe: Event Calendar in asp.net Pin
AllenB197918-Nov-16 10:42
AllenB197918-Nov-16 10:42 
GeneralClickable cell Pin
HackensackNJ25-Jul-14 6:15
HackensackNJ25-Jul-14 6:15 
Questionhelpful Pin
Shah Ankita9-Jul-14 18:43
Shah Ankita9-Jul-14 18:43 
QuestionGetting an error when trying to create in VB.NET Pin
Russell_Bolosan13-Jun-13 9:21
Russell_Bolosan13-Jun-13 9:21 
QuestionDesign - Look and Feel of Calendar Pin
Neha wahi11-Jun-13 17:56
Neha wahi11-Jun-13 17:56 
AnswerRe: Design - Look and Feel of Calendar Pin
Neeraj Saluja11-Jun-13 18:58
Neeraj Saluja11-Jun-13 18:58 
GeneralRe: Design - Look and Feel of Calendar Pin
Neha wahi11-Jun-13 19:28
Neha wahi11-Jun-13 19:28 
QuestionRecurring Events Pin
Neha wahi10-Jun-13 23:44
Neha wahi10-Jun-13 23:44 
AnswerRe: Recurring Events Pin
Neeraj Saluja11-Jun-13 5:26
Neeraj Saluja11-Jun-13 5:26 
GeneralRe: Recurring Events Pin
Neha wahi11-Jun-13 17:54
Neha wahi11-Jun-13 17:54 
Questionconsulta necesito controlar el tamaño del control eventcalendar Pin
diana ysabel3-Jan-13 10:25
diana ysabel3-Jan-13 10:25 
QuestionNeed to display single event in multiple cells Pin
Member 806441714-Nov-12 16:51
Member 806441714-Nov-12 16:51 
QuestionNeed to display single event in multiple cells Pin
Member 47683617-Nov-12 4:17
Member 47683617-Nov-12 4:17 
GeneralEvents on the same day Pin
Member 23788889-Aug-12 2:28
Member 23788889-Aug-12 2:28 
GeneralRe: Events on the same day Pin
Member 1136870115-Apr-15 0:31
Member 1136870115-Apr-15 0:31 
GeneralSee also DayPilot (Day/Week/Resources View) Pin
Dan Letecky19-Jun-12 10:36
Dan Letecky19-Jun-12 10:36 
QuestionAdding and Editing Events Pin
Keith Plummer7-Jun-12 5:54
Keith Plummer7-Jun-12 5:54 
GeneralMy vote of 5 Pin
Nilesh Patil Kolhapur24-May-12 20:13
Nilesh Patil Kolhapur24-May-12 20:13 
QuestionColor on event dates Pin
Mik Jensen13-May-12 0:37
Mik Jensen13-May-12 0:37 
QuestionShow any month Pin
sai21808-May-12 3:30
sai21808-May-12 3:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.