Click here to Skip to main content
Click here to Skip to main content

Event Calendar [ ASP.NET 2.0 / C# ]

By , 18 May 2008
 

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.

        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)

About the Author

Neeraj Saluja
Web Developer
United States United States
Member
.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 ^ ]

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Questionconsulta necesito controlar el tamaño del control eventcalendar Pinmemberdiana ysabel3 Jan '13 - 10:25 
QuestionNeed to display single event in multiple cells PinmemberMember 806441714 Nov '12 - 16:51 
QuestionNeed to display single event in multiple cells PinmemberMember 47683617 Nov '12 - 4:17 
GeneralEvents on the same day [modified] PinmemberMember 23788889 Aug '12 - 2:28 
GeneralSee also DayPilot (Day/Week/Resources View) PinmemberDan Letecky19 Jun '12 - 10:36 
QuestionAdding and Editing Events PinmemberKeith Plummer7 Jun '12 - 5:54 
GeneralMy vote of 5 PinmemberNilesh Patil Kolhapur24 May '12 - 20:13 
QuestionColor on event dates PinmemberMik Jensen13 May '12 - 0:37 
QuestionShow any month Pinmembersai21808 May '12 - 3:30 
GeneralGood Job Pinmembersharon.s198711 Apr '12 - 5:51 
GeneralMy vote of 5 Pinmembersharon.s198711 Apr '12 - 5:49 
GeneralMy vote of 5 Pinmembermanoj kumar choubey27 Mar '12 - 22:26 
QuestionWeek numbers Pinmembersigenstrøm4 Oct '11 - 5:25 
QuestionI can't show the last month date PinmemberMember 458547913 Apr '11 - 18:05 
GeneralMy vote of 4 Pinmembersubhajit Giri20 Jan '11 - 19:09 
GeneralMy vote of 5 PinmemberTejuKrishna25 Oct '10 - 21:05 
GeneralMy vote of 5 Pinmembersajidbanday2 Sep '10 - 19:24 
GeneralMy vote of 5 Pinmembervahidmir18 Jul '10 - 19:07 
Generalthanx Pinmembergrace871 Jun '10 - 22:25 
GeneralMutilanguage in EventCalendar Pinmemberbillgate_qn9 May '10 - 18:20 
Generaldayrender Pinmemberspamola16 Apr '10 - 9:07 
QuestionThe Source Code does't compile Pinmembertheodoraaaa17 Jan '10 - 3:41 
GeneralRunning the projecty locally Pinmembervalery1322137 Jan '10 - 19:18 
QuestionCan I have the source code of EventCalendar.dll and EventCalendar.pdb Pinmemberhon1234567 Jan '10 - 16:04 
GeneralRevert to current date Pinmembernrlamprecht24 Nov '09 - 21:13 
QuestionWhy can't work well in vs2008? Pinmemberpanpcx14 Nov '09 - 1:32 
QuestionHow to run locally PinmemberMember 34028867 Oct '09 - 2:28 
GeneralWhich one to download Pinmembernainakarri5 Aug '09 - 4:01 
QuestionIn case of Event is of more than one day then How to get multiple selection of Row...in Same Table Cell Like OutLook-Calendar PinmemberNileshUpadhyay27 May '09 - 3:36 
QuestionHow to remove > PinmemberMember 39395614 May '09 - 0:40 
Questionhow to implement Reoccur Event Pinmemberimshally813 May '09 - 9:33 
Generalmany event in same day Pinmemberhanscanales@hotmai.com20 Apr '09 - 8:45 
GeneralEventCalendar Pinmemberaavijiaa17 Mar '09 - 1:17 
QuestionEvent Calendar Pinmembercodeprojectaspnet13 Feb '09 - 6:09 
GeneralIt is Excellent and Usefull Pinmembersudhakar796 Jan '09 - 20:35 
GeneralAn error [modified] Pinmemberamaraa5918 Dec '08 - 15:25 
GeneralImage on EventDate PinmemberMember 25036783 Dec '08 - 20:08 
GeneralIt's Good ! I very like Pinmemberhewenhaotc30 Jul '08 - 21:07 
Generalvery nice, but i need help! PinmemberEvin Safdia21 Jul '08 - 18:35 
Generalreusable comp + cell back color Pinmemberrockygirl241012 Jun '08 - 23:46 
NewsVery good, BUT http://www.daypilot.com nail this to the floor. PinmemberJanBorup29 May '08 - 10:17 
GeneralGreat contribution PinmemberAnil Srivastava27 Mar '08 - 23:14 
Generalnice work Pinmembershenji12354627 Mar '08 - 16:18 
GeneralGreat Article Pinmemberjoshc27 Mar '08 - 0:01 
GeneralGreat Article PinmemberMajid Malik26 Mar '08 - 23:57 
GeneralPopUp on Mouse Over PinmemberGovardhana Reddy28 Feb '08 - 3:30 
GeneralGetting Error setting the Event Calendar up... Pinmemberjohninkum2@yourehelp.com25 Feb '08 - 16:46 
QuestionHoverMenuExtender [modified] PinmemberNickKa17 Dec '07 - 4:39 
GeneralDo you have VB version Pinmemberdfourlive16 Oct '07 - 10:04 
GeneralHi PinmemberCharlP1 Oct '07 - 21:16 

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 19 May 2008
Article Copyright 2006 by Neeraj Saluja
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid