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

"Add to Calender": Adding event to Microsoft Outlook through Web Application

By , 18 May 2012
 

Introduction

When working on a campaigning web application, I had to add a button to the web page so that when a user clicks on it an event gets added to their Outlook calender.

There are two ways of doing it:

  1. Make user download the ics file and save it in the Outlook.
  2. Directly add the appointment to the Outlook calender.

Using the code

1. Code for downlaoding ics file

First, starting with downloading the ics file, for doing this follow the below steps:

  1. Create a new appointment in Outlook and save it in iCalender format in your machine.
  2. Open the saved file in notepad you can see the various parameters which can easily be understood.
  3. Add the button "Add to Calender" to your web page.
  4. Add a new handler in the site Handler.ashx and add the below code:
public void ProcessRequest(HttpContext context)
{
    context.Response.Clear();
    context.Response.ContentType = "text/calendar";
    context.Response.AddHeader("Content-Disposition", "inline; filename=\\Calender.ics");
    context.Response.BinaryWrite(new System.Text.ASCIIEncoding().GetBytes(@"BEGIN:VCALENDAR
PRODID:-//Microsoft Corporation//Outlook 12.0 MIMEDIR//EN
VERSION:1.0
BEGIN:VEVENT
DTSTART:20120515T110000Z
DTEND:20120515T113000Z
LOCATION:office
UID:040000008200E00074C5B7101A82E00800000000E09778CC8A2FCD01000000000000000
	010000000A616AC829938554DA102762D344287C7
DESCRIPTION;ENCODING=QUOTED-PRINTABLE:=
=0D=0A
SUMMARY:calander
PRIORITY:3
END:VEVENT
END:VCALENDAR"));
        //Response.Write(); 
        context.Response.End();
}

public bool IsReusable
{
    get
    {
        return false;
    }
}

Add the below code to the button click event:

Response.Redirect("Handler.ashx");

Now we are done. Run the site click on the button it will give u pop-up to open or save file, Open the file and save & close it. The appointment is in your outlook calender now.

In the above code you can make the various parameters dynamic or configurable.

2. Code for directly adding to Outlook

Second, directly add the appointment to Outlook. To do this you have to add a refrence to "Microsoft Outlook Office Library" under COM and add the namespace for the same above the page:

using Microsoft.Office.Interop.Outlook;

Add a button "Add to Calender2" to your web page and add the below code in its button click event:

Numprotected void btnCalender2_Click(object sender, EventArgs e)
{
    _Application olApp = (_Application)new Application();
    NameSpace mapiNS = olApp.GetNamespace("MAPI");

    string profile = "";
    mapiNS.Logon(profile, null, null, null);

    _AppointmentItem apt = (_AppointmentItem)
            olApp.CreateItem(OlItemType.olAppointmentItem);

    // set some properties
    apt.Subject = "Test";
    apt.Body = "Testing body";

    apt.Start = new DateTime(2012, 5, 15, 13, 30, 00);
    apt.End = new DateTime(2012, 5, 15, 14, 30, 00);

    apt.ReminderMinutesBeforeStart = 15;           // Number of minutes before the event for the remider
    apt.BusyStatus = OlBusyStatus.olTentative;    // Makes it appear bold in the calendar

    apt.AllDayEvent = false;
    apt.Location = "";

    apt.Save();
}

The above code was taken from: How to Create Birthday Reminders Using Microsoft Outlook, in C#[^], which made my work very easy.

Run the site, click the button, and the appointment must have been added in your Outlook.  

Conclusion  

Adding an appointment through a web site was not that tough!!!

License

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

About the Author

deeptibansal
Software Developer
India India
Member
No Biography provided

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   
QuestionI think this is not entirely truememberMember 283852815 May '13 - 1:25 
QuestionCOM errormembernavadeebans12 Sep '12 - 23:53 
GeneralAdding Private Appointment to outlook calender [modified]memberNilesh (Puna)9 Jul '12 - 0:57 
GeneralMy vote of 5memberNilesh Patil(Shirpur)15 May '12 - 20:37 
GeneralRe: My vote of 5memberdeeptibansal15 May '12 - 22:44 
GeneralMy vote of 5membermaneesh@path15 May '12 - 0:11 
GeneralRe: My vote of 5memberdeeptibansal15 May '12 - 17:54 

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.130516.1 | Last Updated 18 May 2012
Article Copyright 2012 by deeptibansal
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid