tags:

views:

982

answers:

2

I'm trying to figure out the best way take a ics file and convert it into a format I can put into a database. Can anyone recommend how to do this?

+5  A: 

There's an example of parsing iCalendar files. It is based on the DDay.iCal library.

Darin Dimitrov
This seems to be the most promising one
AtliB
+1  A: 

Hi,

The commercial .NET library Aspose.iCal does the job

http://www.aspose.com/community/blogs/salman.sarfraz/archive/2008/11/21/where-is-aspose-icalendar.aspx (used to be http://www.aspose.com/categories/file-format-components/aspose.network-for-.net/default.aspx)

Or this open source parser (didn't try it)

http://sourceforge.net/projects/icalparser/

And this online iCal validator comes in handy

http://severinghaus.org/projects/icv/

Regards, tamberg

tamberg