Hello,
At this time, I'm doing this :
var dateSelected = $("#datepicker").datepicker("getDate");
alert(dateSelected.getDate());
alert(dateSelected.getMonth());
alert(dateSelected.getFullYear());
dateSelected value look this : Fri Sep 11 2009 00:00:00 GMT+0200 (Romance Daylight Time)
2 Options :
a) Is it possible to use this in .NET directly (string to DateTime) ?
b) I tried several way to return dd/mm/yyyy without success
Regards,