Problem time when event was saved

I have a problem about time with scheduler. i config scheduler like that

scheduler.config.xml_date = "%d/%m/%Y %H:%i";

I use mini calendar for lightbox to choose time for event. Lightbox config like that:

scheduler.config.lightbox.sections = [ {name:"Event_name",height:30,map_to:"event_name",type:"textarea",focus:!0}, {name:"Description",height:100,map_to:"event_description",type:"textarea"}, {name:"Room",map_to:"room_id",type:"select",options:rooms}, {name:"Sections",map_to:"section_id",type:"select",options:sections}, {name:"Equipments",map_to:"equipment_id",type:"select",options:equipments,default_value:"1"}, {name:"Event_Category",map_to:"category_id",type:"select",options:meetingCategories}, {name:"Controller",map_to:"controller",type:"combo",options:users,height:15,filtering:true}, {name:"recurring", height:115, type:"recurring", map_to:"rec_type",button:"recurring"}, {name:"time",height:72,type:"calendar_time",map_to:"auto",time_format:["%d/%m/%Y %H:%i"]} ];

scheduler run on local is ok but when run on host IIS have wrong time.
Example : i choose 09-01-2015 (09-Jan-2015) for start_time event but in SQL database is 01-09-2015.
sometime i also have wrong value time : start_time :1/1/0001 12:00:00 AM
See my attached file to see problem.




i have just figure out this problem with my scheduler.
I configed file web.config, check culture and uiculture like that:

<system.web>
    <globalization culture="en-GB" uiCulture="en-GB"/>
</system.web>