I do not know that the origanle message is but you might try
this. I cannot
find this tag any longer but this might help.
************ Useage ***************
<cf_vCalendar StartDate = "2/01/07"
StartTime = "10:00 AM"
EndDate = "2/01/07"
EndTime = "10:30 AM"
Summary = "MEETING"
Location = "Web"
Description = "https://www.gotomeeting.com/join/536910997
Conference Call: Call In: 1-555-206-0240 Participant Pin
387577##"
FilePath = "c:\Inetpub\cal\Feb1.vcs"
LinkURL = "/cal/Feb1.vcs"
LinkText = "Click here to add this event to your
calendar">
************ Useage ***************
********** Tag ***************
<!--
Custom tag: cf_vCalendar
Author: Minh Lee Goon
Date: June 23, 2003
License: This tag may be used freely. You may modify this
tag as you see
fit.
However, this header must remain intact.
Disclaimer: This tag is provided as is. I make no warranty
or guarantee.
Use of
this tag is at your own risk. Please contact me with bug
fixes and/or
improvements.
Contact: MinhLee@Goonies.info
-->
<!--- Default: Initialize variables --->
<cfparam name="attributes.StartDate" default="">
<cfparam name="attributes.StartTime"
default=#CreateTime("8", "0", "0")#>
<cfparam name="attributes.EndDate"
default=#attributes.StartDate#>
<cfparam name="attributes.EndTime"
default=#CreateTime("17", "0", "0")#>
<cfparam name="attributes.Location" default="Not
applicable">
<cfparam name="attributes.Description" default="">
<cfparam name="attributes.Summary" default="">
<cfparam name="attributes.FilePath" default="">
<cfparam name="attributes.LinkURL" default="">
<cfparam name="attributes.LinkText"
default=#attributes.Summary#>
<!--- Condition: Abort tag if required fields are not
defined --->
<cfif (attributes.StartDate is "") or (attributes.Summary
is "") or
(attributes.LinkURL is "") or (attributes.FilePath is "")>
<cfabort showerror="The following attributes are
required: FilePath,
LinkURL, StartDate, Summary">
</cfif>
<!--- Condition: Hard-set dates and times, if not defined
in custom tag.
Verify date/time values --->
<cfif (IsDate(attributes.StartDate) is "No")>
<cfabort showerror="All date/time fields must be able to
be converted to
values.">
</cfif>
<cfif attributes.StartTime is "">
<cfset attributes.StartTime=#CreateTime("8", "0",
"0")#>
<cfelse>
<cfif (IsDate(attributes.StartTime) is "No")>
<cfabort showerror="All date/time fields must be able to
be converted to
values.">
</cfif>
</cfif>
<cfif attributes.EndDate is "">
<cfset attributes.EndDate=#attributes.StartDate#>
<cfelse>
<cfif (IsDate(attributes.EndDate) is "No")>
<cfabort showerror="All date/time fields must be able to
be converted to
values.">
</cfif>
</cfif>
<cfif attributes.EndTime is "">
<cfset attributes.EndTime=#CreateTime("17", "0",
"0")#>
<cfelse>
<cfif (IsDate(attributes.EndTime) is "No")>
<cfabort showerror="All date/time fields must be able to
be converted to
values.">
</cfif>
</cfif>
<!--- Set: Date/Time information --->
<cfset dtStart=#CreateDateTime(Year(attributes.StartDate),
Month(attributes.StartDate), Day(attributes.StartDate),
Hour(attributes.StartTime), Minute(attributes.StartTime),
Second(attributes.StartTime))#>
<cfset dtEnd=#CreateDateTime(Year(attributes.EndDate),
Month(attributes.EndDate), Day(attributes.EndDate),
Hour(attributes.EndTime), Minute(attributes.EndTime),
Second(attributes.EndTime))#>
<!--- Set: Get time zone information --->
<cfset TimeZoneInfo=GetTimeZoneInfo()>
<!--- File: Create and append vCalendar information to the
specified
file --->
<cffile action="write" file="#attributes.FilePath#"
output="BEGIN:VCALENDAR">
<cffile action="append" file="#attributes.FilePath#"
output="PRODID:-//Microsoft Corporation//Outlook 10.0
MIMEDIR//EN">
<cffile action="append" file="#attributes.FilePath#"
output="VERSION:1.0">
<cffile action="append" file="#attributes.FilePath#"
output="BEGIN:VEVENT">
<cffile action="append" file="#attributes.FilePath#"
output="DTSTART:#DateFormat(dtStart,
"yyyymmdd")#T#TimeFormat(DateAdd("h",
TimeZoneInfo.UTCHourOffset, dtStart), "HHmmss")#Z">
<cffile action="append" file="#attributes.FilePath#"
output="DTEND:#DateFormat(dtEnd,
"yyyymmdd")#T#TimeFormat(DateAdd("h",
TimeZoneInfo.UTCHourOffset, dtEnd), "HHmmss")#Z">
<cffile action="append" file="#attributes.FilePath#"
output="LOCATION;ENCODING=QUOTED-PRINTABLE:#attributes.Location#">
<cffile action="append" file="#attributes.FilePath#"
output="DESCRIPTION;ENCODING=QUOTED-PRINTABLE:#attributes.Description#">
<cffile action="append" file="#attributes.FilePath#"
output="SUMMARY;ENCODING=QUOTED-PRINTABLE:#attributes.Summary#">
<cffile action="append" file="#attributes.FilePath#"
output="PRIORITY:3">
<cffile action="append" file="#attributes.FilePath#"
output="END:VEVENT">
<cffile action="append" file="#attributes.FilePath#"
output="END:VCALENDAR">
<cfoutput>
<a
href="#attributes.LinkURL#">#attributes.LinkText#</a>
</cfoutput>
****************** Tag *******************
"drmaves" <drmaves@iglide.net> wrote in message
news:fg285n$q71$1@forums.macromedia.com...
> Nick,
>
> Did you every get this to work? If so, I'd be interested
in seeing your
> final solution.
>
> Roger