views:

385

answers:

1

Can anyone please send me the code to sending meeting request through .net web application?

+1  A: 

As 76mel suggested an ICS file will create an Outlook calendar event (or for any calendar application that supports iCal) - there pretty simple - just need to write a text file with an ICS extension and a mime type of "text/calendar":

BEGIN:VCALENDAR
VERSION:2.0
PRODID: YourAppName
METHOD: PUBLISH
BEGIN:VEVENT
DTSTART:20100401T000000Z
DTEND:20100401T000000Z
LOCATION:Somewhere
UID:MeetingId
DTSTAMP:20100330T225528Z
DESCRIPTION:Meeting Title
SUMMARY:Meeting Description
END:VEVENT
END:VCALENDAR
Rhys Godfrey
be sure to use an ashx handler to output the ics file. Lots of examples of outputting images and zip files on the internet.
Eric Falsken