Add events to google calendar and yahoo calendar
-
How can I add an event to google calendar and yahoo calendar in asp.net?
-
Answer:
download the api, review the api. http://code.google.com/apis/calendar/data/2.0/developers_guide_dotnet.html Note the section for creating events From: http://code.google.com/apis/calendar/data/2.0/developers_guide_dotnet.html#CreatingSingle Authenticate to the service Create the event 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);
Alexandre at Stack Overflow Visit the source
Related Q & A:
- How to Use Google Calendar API?Best solution by Stack Overflow
- How to add calendar events in other calendar in Android?Best solution by Stack Overflow
- How to integrate with google Calendar?Best solution by Stack Overflow
- How do I keep Yahoo! groups events from showing up on my Calendar?Best solution by Yahoo! Answers
- How do I sync my blackberry calendar to my Google calendar?Best solution by Quora
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.