sending outlook meeting request through asp.net application
How do I sending meeting request through .net web applicati开发者_如何转开发on?
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
精彩评论