Hi,
I have created a system in which I edit a recurrence from a web page but want to use a windows service to process the recurrences.
I have the web page creating a recurrence string as shown below:
DTSTART:20100319T000000Z
DTEND:20100319T000100Z
RRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR;WKST=MO
I am then in the service using that string to generate the next date in the sequence, change the recurrence string and save back into the database. In addition if the recurrence is of a finite count I need to decrease the count that is within the string.
Other than manipulating my original string and saving that back into the database how do I do this? The class structure is completely differnt to it's web counterpart which seems a little odd given that in theory the functionality should be the same.
Regards,
Jon
I have created a system in which I edit a recurrence from a web page but want to use a windows service to process the recurrences.
I have the web page creating a recurrence string as shown below:
DTSTART:20100319T000000Z
DTEND:20100319T000100Z
RRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR;WKST=MO
I am then in the service using that string to generate the next date in the sequence, change the recurrence string and save back into the database. In addition if the recurrence is of a finite count I need to decrease the count that is within the string.
Other than manipulating my original string and saving that back into the database how do I do this? The class structure is completely differnt to it's web counterpart which seems a little odd given that in theory the functionality should be the same.
Regards,
Jon