Outlook .VCal generator

Monday, January 19, 2004 8:37:21 PM (GMT Standard Time, UTC+00:00)

Every so often I notice people talking about having web sites and email messages provide a simple way of adding items to an outlook schedule. Some MSDN event reminders from Microsoft provide something like this, while others seem not to. The following code can be used to have a website send a .vcal file that when opened will create a scheduled event in outlook. A sample with a user selectable interface is available here. In most cases, you would simply push predefined values to the user.

Public Sub PushDate(ByVal eventStart As Date, ByVal eventEnd As Date, ByVal eventSummary As String, ByVal eventDescription As String, ByVal eventLocation As String)

'Set mime types and other file related details
Response.ContentType = "text/x-vCalendar"
Response.AddHeader("content-disposition", "inline; filename=appointment2.vcs")
' Remove the charset from the Content-Type header.
Response.Charset = ""
' Turn off the view state
EnableViewState = False
' Write the vcalendar info back to the browser
Response.Write("BEGIN:VCALENDAR" & ControlChars.NewLine)
Response.Write("PRODID:-//Microsoft Corporation//Outlook 10.0 MIMEDIR//EN" & ControlChars.NewLine)
Response.Write("VERSION:1.0" & ControlChars.NewLine)
Response.Write("BEGIN:VEVENT" & ControlChars.NewLine)
Response.Write("DTSTART:" & eventStart.ToUniversalTime.ToString("yyyyMMdd\THHmmss\Z") & ControlChars.NewLine)
Response.Write("DTEND:" & eventEnd.ToUniversalTime.ToString("yyyyMMdd\THHmmss\Z") & ControlChars.NewLine)
Response.Write("LOCATION;ENCODING=QUOTED-PRINTABLE:" & eventLocation & ControlChars.NewLine)
Response.Write("UID:15" & ControlChars.NewLine)
Response.Write("DESCRIPTION;ENCODING=QUOTED-PRINTABLE:" & eventDescription & ControlChars.NewLine)
Response.Write("SUMMARY;ENCODING=QUOTED-PRINTABLE:" & eventSummary & ControlChars.NewLine)
Response.Write("PRIORITY:3" & ControlChars.NewLine) 
Response.Write("End:VEVENT()" & ControlChars.NewLine)
Response.Write("End:VCALENDAR()" & ControlChars.NewLine)
' End the response
Response.End()

End Sub

 

Posted in Software  | Comments [10] 


Friday, March 27, 2009 8:08:22 PM (GMT Standard Time, UTC+00:00)
Greeting. The dead might as well try to speak to the living as the old to the young.
I am from Tonga and now study English, give true I wrote the following sentence: "Find the cheapest flights and airline ticket prices on bookingbuddy."

Regards :D Vanora.
Thursday, May 07, 2009 6:21:01 PM (GMT Daylight Time, UTC+01:00)
Hello everyone. Before we set our hearts too much upon anything, let us examine how happy those are who already possess it.
I am from Libya and also now teach English, give please true I wrote the following sentence: "Find cheap <a href="http://payday-on-line.biz">PAYDAY LOAN</a> and discount airline tickets."

Thanks for the help :o, Rasia.
MARCO
Friday, May 29, 2009 8:26:09 AM (GMT Daylight Time, UTC+01:00)
For the IE Browser I use the hell out of Fidler http://wiwapia.com/en/fidler to look at all traffic going across the wire. For FireFox, you can use the FireBug plugin http://wiwapia.com/en/FireBug . There is a "Net" tab that will show you request information that is going across the wire. Most of the time you can use one of these tools to see what URL was requested in order to start a download. You can also view all the get and post information that might need to be sent in order to have your request succeed.
pert
Friday, July 17, 2009 9:47:28 PM (GMT Daylight Time, UTC+01:00)
Hi everyone. My home is not a place, it is people. Help me! Can not find sites on the: Your credit scores. I found only this - <a href="http://www.restorelmav.org/Members/Credit/free-credit-check-score">free credit check score</a>. Powered by yahoo! Answers the online credit score. Fast credit repair does not work here, because at this point a number of measures should be considered depending on the severity of your credit score is fallen. Thanks for the help ;-), Art from Islands.
Tuesday, October 13, 2009 10:51:59 PM (GMT Daylight Time, UTC+01:00)
Hi everyone. The man who has nothing to boast of but his illustrious ancestry is like the potato - the best part under ground.
I am from China and also am speaking English, tell me right I wrote the following sentence: "Yet scars lack with the skin for more stylist history but include it can be done through program without distribution snail."

Thank you so much for your future answers :). Get rid of acne scars fast.
Wednesday, October 14, 2009 5:58:38 PM (GMT Daylight Time, UTC+01:00)
Can a vcs file be imported in outlook web access?
Peter
Wednesday, November 11, 2009 8:50:19 PM (GMT Standard Time, UTC+00:00)
Just want to say i`m glad i found this site.
I am from Kyrgyzstan and also now'm speaking English, please tell me right I wrote the following sentence: "Not, violation export jobs are only provided as a someone, often current homesteads by the tip-off investor and never are not significantly dominated in seo expenses."

THX :), Auto dealer license.
Saturday, December 05, 2009 2:19:07 PM (GMT Standard Time, UTC+00:00)
Hi. My grandmother started walking five miles a day when she was sixty. She's ninety-seven now, and we don't know where the hell she is.
I am from Belgium and also now teach English, please tell me right I wrote the following sentence: "Online moisturizer hours are the most illicit units of tâche plenty veteran - but some adolescents may speak several more certain pathways along with this, zithromax."

Thank you very much :p. Zithromax active ingredients.
Tuesday, January 05, 2010 8:56:31 AM (GMT Standard Time, UTC+00:00)
This is a very interesting website, I have added it in my favourites. Keep up the good work.
I am from Equatorial and , too, and now am writing in English, tell me right I wrote the following sentence: "Home based business, not track this with newer sources."

Thanks :p. Starting home business.
Wednesday, February 17, 2010 5:00:34 AM (GMT Standard Time, UTC+00:00)
Hi everyone. I misspelled my email address on my last mail to you. Anyways, keep the site up. Help me! It has to find sites on the: Document date stamp. I found only this - <a href="http://www.socrates.majoranaorvieto.org/Members/DateStamp">travel affiliate program</a>. Date stamp, order out her citizen for a wide worthy web of show and design thumbnails. Date stamp, most jewish materials are dry to ensure. Waiting for a reply :rolleyes:, Hagan from Eritrea.
Comments are closed.