Adding events to Davical server using Http request and DDay.iCal
问题 I am trying to add an event from my local database to the Davical server (in fact, this should apply to any CalDav server, as long as it is compliant with the CalDav protocol)... From what I could read here, I can send a PUT request to add events contained in a VCALENDAR collection... So here is what I try to do: try { // Create the HttpWebRequest object HttpWebRequest Request = (HttpWebRequest)HttpWebRequest.Create("http://my_caldav_srv/davical.php/user/mycalendar"); // Add the network