I'm getting the following error when clicking the "Options" button when trying to insert a new appointment:
"Microsoft JScript runtime error: Sys.WebForms.PageRequestManagerServerErrorException: The DateTime represented by the string is not supported in calendar System.Globalization.GregorianCalendar"
This doesn't happen in a small test project I put together but happens when I put the calendar into our application. Here's the parameter string I get during the postback just before the error occurs. I believe the startDate and endDate is formatted improperly and something in our application is causing this problem. I'm trying to insert and appointment on February 23rd. Notice the start date is 2010 0023 0002. It should be 2010 0223 0000. I.e., the day/month should be the middle 4 digits, the time is the last 4 digits.
"command":"AdvancedInsert",
"appointment":
{
"Subject":"",
"Description":"",
"Resources":[],
"RecurrenceState":0},
"startDate":"201000230002",
"endDate":"201000240002"
}
Any idea's what's causing this or how to fix it?
Thanks.
Kevin
"Microsoft JScript runtime error: Sys.WebForms.PageRequestManagerServerErrorException: The DateTime represented by the string is not supported in calendar System.Globalization.GregorianCalendar"
This doesn't happen in a small test project I put together but happens when I put the calendar into our application. Here's the parameter string I get during the postback just before the error occurs. I believe the startDate and endDate is formatted improperly and something in our application is causing this problem. I'm trying to insert and appointment on February 23rd. Notice the start date is 2010 0023 0002. It should be 2010 0223 0000. I.e., the day/month should be the middle 4 digits, the time is the last 4 digits.
"command":"AdvancedInsert",
"appointment":
{
"Subject":"",
"Description":"",
"Resources":[],
"RecurrenceState":0},
"startDate":"201000230002",
"endDate":"201000240002"
}
Any idea's what's causing this or how to fix it?
Thanks.
Kevin