Hi, I'm trying to mix a calendar control in ASP.NET with the google
calendar (just for experimenting/learning/fun) and I'm following the
sample code that comes with the GData .NET library but I have some
issues that I can't resolve:
1. after getting the first chunk of data and parsing it, I do
query.Uri = new Uri(calfeed.NextChunk);
to get the next but it raises an exception saying that I can't pass a
null value to Uri but in the sample it works.
2. To get the times of the events I do the following:
if (entry.Times.Count > 0)
{
foreach (When w in entry.Times)
{
fechas.Add(w.StartTime);
ListBox1.Items.Add(w.StartTime.ToString());
}
}
but I realized that all the events I get have Times property = 0 so no
times can be fetched
Thanks in advance and sorry for my english ;P
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Calendar Data API" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---