Month change with day MSSQL 2005 VS2010 ASP.Net Web

Hi there, my name is Oscar and i’m trying to do some scheduler implementation just to know more about this great scheduler. Sorry for my english. I have a .Net app in web and when i load the scheduler everything go fine, i can see all the dates but if i try to save a new one date the connector save it but change the month for the day, I mean if i want a date on December 8 the server save it on August 12. Can you help me please??? Im Using .ashx page with the connector for .Net
//Here the client code
function init() {

     scheduler.config.xml_date = "%Y-%m-%d %H:%i"; //"%d/%m/%Y %H:%i
     scheduler.config.prevent_cache = true;
     scheduler.config.multi_day = true;

scheduler.config.show_loading = true;

     scheduler.init('scheduler_here', null, "month");

     scheduler.load("Esquema.ashx");

     var dp = new dataProcessor("Esquema.ashx");
     dp.init(scheduler);

}

thanks in advance

client side will use scheduler.config.xml_date format for data saving, normally it means that the same format as taken from DB will be used for data saving, which must lead to correct operation results.

You can try to set different value to the

dhtmlxConnectors.Tools.DateFormat - which defines format of data , when it loaded in the scheduler.
default is “yyyy-MM-dd HH:mm:ss”;

thanks to you so so much, its working now, now just going to play with the controls and values of the client side and try to save more values. Thanks to you again.

c’ya.