开发者

sending outlook meeting request through asp.net application

开发者 https://www.devze.com 2022-12-24 00:02 出处:网络
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)

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
0

精彩评论

暂无评论...
验证码 换一张
取 消