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

Google like Calendar in ASP.NET (AJAX)

By , 8 Mar 2009
 

Introduction

If you have got a Gmail account, you can access and use the Google calendar where you can add, update and delete events. You can also drag and drop an event from one date to another. There is also a facility to resize the event.

Now I tried to cover most functionalities with the help of AJAX. When you add an event in Google calendar, it shows a window just like tool tip where you can add or delete an event and here I opened a new window to add an event.

You have also got a facility to set the background color of an event in my code.

How It Works?

  • New event: Hold your mouse down and drag down
  • Move event: Hold your mouse down at the top of an event and drag
  • Resize event: Hold your mouse down at the bottom of an event and drag
  • Edit event: Double click at the middle of an event and wait until a new popup appears
  • Delete event: Click on event and press delete key on your keyboard or click on close button top left corner

Using the Code

You just have to create a database on SQL Server and run the SQL query attached with the article in zip format. Change the connection string according to your convenience in the application's web.config file.

HTML Code

The default time settings in calendar are in HH:MM AM/PM format. If you want to set the time in 24 hour format, please read the following code. Make the following changes in Calender.aspx page.

    <div id="demo_cal_hours">
        <%
            string suffix="";
            string hour = "";            
           
            for (int no = startHourOfWeekPlanner; no <= endHourOfWeekPlanner; no++)
            { 
                              
                hour = no.ToString();
               // un-comment if you want to set the time in 24 hours format
               // suffix = "0";               
               // comment the following 2 lines of code if you want to 
	      // set the timing in 24 hours
                 suffix = origin.ToString("tt");
                 hour = origin.ToString("hh");   
                time = "<span style='font-size:16px;'>" + hour.ToString() + 
		"</span>" + "<span class=\"content_hour\" >" + suffix + "</span>";
                origin = origin.AddMinutes(60);
                
          %>
          <div class="demoContentTime"><% Response.Write(time); %></div>
          
  <%
            } %>
  
  </div>

C# Code

Make the changes in the following code if you want to set the start and end Hour in the calendar. Make changes in startHourOfWeekPlanner and endHourOfWeekPlanner global variables. You can get this code in Calendar.aspx page.

public int startHourOfWeekPlanner = 8; // Start hour of Calender
public int endHourOfWeekPlanner = 21;  // End hour of Calender.
public double date = 0;
public string time="";
public DateTime origin;
// The following code converts DateTime to Unix timestamp.
protected void Page_Load(object sender, EventArgs e)
{    
    string dat = "1970-1-1";
    origin = new DateTime(DateTime.Now.Year, 
    DateTime.Now.Month, DateTime.Now.Day, 8, 0, 0, 0);
    TimeSpan diff = origin - Convert.ToDateTime(dat);
    date = Math.Floor(diff.TotalSeconds);
}

JavaScript Code

The following code is called on body load event. You can find the code in new-Cal.js file.

function initCalendar()
{
     demo_container = document.getElementById('demo_container');
     if(!document.all)demo_container.onclick = ffEndEdit;
     demo_cal_appointments = document.getElementById('demo_cal_appointments');
     var subDivs = demo_cal_appointments.getElementsByTagName('DIV');
     for(var no=0;no<subDivs.length;no++){
      if(subDivs[no].className=='demo_appointHour'){
       subDivs[no].onmousedown = initNewAppointment;
   
       if(!SetnewAppointmentWidth)SetnewAppointmentWidth = subDivs[no].offsetWidth;
          }
      if(subDivs[no].className=='demo_appoint_day'){
       dayPositionArr[dayPositionArr.length] = getLeftPos(subDivs[no]);
      }
  
     }
     if(initilizeTopHours > CalenderStartHour)document.getElementById
	('demo_cal_content').scrollTop = ((initilizeTopHours - CalenderStartHour)*
	(itemRowHeight+1));
 
     SetappointmentsOffsetTop = getTopPos(demo_cal_appointments);
     SetappointmentsOffsetLeft = 2 - Number(appointMarginSize);
 
     document.documentElement.onmousemove = schedulerMouseMove;
     document.documentElement.onselectstart = cancelSelectionEvent;
     document.documentElement.onmouseup = schedulerMouseUp;
     document.documentElement.onkeydown = schedulerKeyboardEvent;
     var tmpDate = new Date();
     var dateItems = initDateToShow.split(/\-/g);
     tmpDate.setFullYear(dateItems[0]);
     tmpDate.setDate(Number(dateItems[2])/1);
     tmpDate.setMonth(Number(dateItems[1])/1-1);
     tmpDate.setHours(1);
     tmpDate.setMinutes(0);
     tmpDate.setSeconds(0);
 
      var day = tmpDate.getDay();
      if(day==0)day=7;
     if(day>1){
       var time = tmpDate.getTime();
      time = Number(time) - (1000*60*60*24) * (Number(day)-1);
      tmpDate.setTime(time); 
     }
     SetdateStartOfWeek = new Date(tmpDate);
 
     updateTopHeadDates();
 
     if(get_items_from_db){
      getItemsFromDBServer();  
    }
}

In the above script, function schedulerMouseMove is called on mousemove event, cancelSelectionEvent is called on selectstart event, schedulerMouseUp is called on mouseup event and schedulerKeyboardEvent is called on keydown event.

Compatible Browsers

I have tested the application on the following browsers: Internet Explorer 7, Firefox 2.0.0.20.

History

  • First version uploaded on March-08-2009

License

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

About the Author

Lokesh_1937444
CEO SL Soft Technologies
India India
Member
SL-Soft Technologies provides e-business solutions and application management services to its various clients in India and abroad. Our expertise extends across a wide range of technologies encompassing Internet, E-Commerce, Data Warehousing, and Software Development. Our industry experience extends to providing solutions to several industries.
 
We believe in partnering with our clients for every solution we develop for them. Be it a Website Development, software development or any other assignment, we are always next to our clients. This gives us a unique opportunity to understand their business requirements and deliver them the solutions which fit the best in their needs. SL-Soft Technologies is on a continuous growth path ever since and has earned a clientele of highly satisfied customers. We are committed to set new horizons in client satisfaction.

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionHow to store Time and Date values in datetime datatype columnmemberyogesh318828 Jan '13 - 21:23 
QuestionNice!memberDan Letecky19 Jun '12 - 11:27 
QuestionGoogle Like calender with Only Day viewmemberJai.chow28 Jan '12 - 5:44 
Bugit overlaps when two appointment at same time [modified]memberdharam111 Jan '12 - 23:20 
GeneralAwesome workmemberMember 83350683 Nov '11 - 1:48 
QuestionGoogle Like Calendar in Asp.Net(Ajax)memberbharanisoft20 Jul '11 - 2:43 
GeneralHELP - How to close the popup event edit window when the mouse focus moves back to the parent calendar windowmemberying xiao14 Jun '11 - 12:28 
GeneralI have few issuesmemberVandana8710 Apr '11 - 22:05 
GeneralRe: I have few issuesmemberLokesh_19374441 Jun '11 - 23:14 
GeneralGoodmemberKatareRaju1 Mar '11 - 18:14 
GeneralNICEmemberKatareRaju1 Mar '11 - 18:13 
GeneralI need help plsssmemberyuyu1912 Jan '11 - 17:39 
GeneralGOODmemberangxuan9 Jan '11 - 22:28 
GeneralMy vote of 4memberabhi_jain16071 Oct '10 - 2:16 
GeneralGreat Work!membersrkrishnakumar8 Sep '10 - 15:27 
GeneralDear Lokesh Great Job DonememberMilton_win12 Apr '10 - 10:23 
QuestionI want to modified the calendar into single line, but I got a problem.memberamory62623 Jan '10 - 22:11 
Questionlooks great but does not load the saved dates form db...memberMember 446876617 Dec '09 - 8:33 
AnswerRe: looks great but does not load the saved dates form db...memberLokesh_193744429 Dec '09 - 18:29 
QuestionHow Event Fire when Schedule come ??memberketan d patel16 Dec '09 - 17:24 
AnswerRe: How Event Fire when Schedule come ??memberLokesh_193744429 Dec '09 - 18:27 
Questioncentered google calendar working wrongmemberdolhaig6 Dec '09 - 0:17 
AnswerRe: centered google calendar working wrongmemberLokesh_19374449 Dec '09 - 2:45 
GeneralRe: centered google calendar working wrongmemberdolhaig9 Dec '09 - 9:12 
GeneralMsSql loading problemmemberdolhaig5 Dec '09 - 2:14 
Generalproblem in runningmemberindiaindia21 Oct '09 - 20:02 
GeneralRe: problem in runningmemberLokesh_193744422 Oct '09 - 18:47 
GeneralWell done- it is workingmemberSiew Hwa1 Oct '09 - 0:20 
GeneralRe: Well done- it is workingmemberLokesh_193744422 Oct '09 - 18:49 
Generali can't run it!memberDo Quang27 Sep '09 - 18:38 
GeneralRe: i can't run it!memberLokesh_193744422 Oct '09 - 18:44 
GeneralIt's coolmembersanju417916 Mar '09 - 21:10 
GeneralDouble click...memberIndustria Virtual9 Mar '09 - 9:21 
GeneralRe: Double click...memberLokesh_19374449 Mar '09 - 19:26 
GeneralRe: Double click...memberIndustria Virtual11 Mar '09 - 1:36 
GeneralRe: Double click...memberMember 461003530 Mar '09 - 11:54 
GeneralRe: Double click...memberMember 461003530 Mar '09 - 12:10 
GeneralGood JobmemberMember 15911279 Mar '09 - 8:49 
GeneralRe: Good JobmemberLokesh_19374449 Mar '09 - 19:29 
GeneralExcellentmemberakhilendu9 Mar '09 - 3:41 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 8 Mar 2009
Article Copyright 2009 by Lokesh_1937444
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid