I'm trying to create a lightweight javascript function to mimick the functionality of one of our web services.
When a user clicks a link, I'd like to have the page automatically create a file for them to download containing iCal data.
It's currently set up where user clicks the link, page...
Yes. This is fairly simple. Have your application response return:
.setContentType("text/calendar;charset=ISO-8859-1");
.setHeader("Content-Disposition", "attachment; filename=FileNameHere.ics");
write("BEGIN:VCALENDAR");
write("METHOD:PUBLISH");
write("VERSION:2.0")...
I'm trying to create a web service which adds multiple events to outlook calendar. The following structure works for other iCal supporting clients, but outlook will only register the first event. Is there a syntax available that outlook supports that will add more than one event from a single...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.