In my database I have a DateTime field. In my form I have three combos for: Day, Month and Year. I have a JavaScript function which serializes the information, sending them to my controller to record. It turns out that the date is coming null. I tried to do this, but it does not work.
DataNascimento:
($("input[name='txtAno']").val() + "-" +
$("input[name='txtMes']").val() + "-" +
$("input[name='txtDia']").val()),
How do I date the date in javascript?