Как добавить событие в календарь Google и календарь Yahoo в asp.net?
Следующие ссылки также могут помочь с календарем Yahoo:
Добавление событий в пользовательские календари. Часть 2. Веб-календари
Добавление событий календаря в Yahoo
Yahoo! Календарь "Добавить событие" Seed URL Параметры
скачать API, обзор API.http://code.google.com/apis/calendar/data/2.0/developers_guide_dotnet.html
Обратите внимание на раздел для создания событий От: http://code.google.com/apis/calendar/data/2.0/developers_guide_dotnet.html#CreatingSingle
Аутентификация в сервисе
Создатьсобытие
EventEntry entry = new EventEntry(); // Set the title and content of the entry. entry.Title.Text = "Tennis with Beth"; entry.Content.Content = "Meet for a quick lesson."; // Set a location for the event. Where eventLocation = new Where(); eventLocation.ValueString = "South Tennis Courts"; entry.Locations.Add(eventLocation); When eventTime = new When(DateTime.Now, DateTime.Now.AddHours(2)); entry.Times.Add(eventTime); Uri postUri = new Uri("https://www.google.com/calendar/feeds/default/private/full"); // Send the request and receive the response: AtomEntry insertedEntry = service.Insert(postUri, entry);
https://calendar.google.com/calendar/render?action=TEMPLATE&text=Bithday&dates=20201231T193000Z/20201231T223000Z&details=With%20clowns%20and%20stuff&location=North%20Pole
https://calendar.yahoo.com/?v=60&st=st20201231T193000&DUR=0200&desc=With%20clowns%20and%20stuff&in_loc=North%20Pole