Microsoft JET Database Engine error '80040e10' Parameter ? has no default value

Microsoft JET Database Engine error '80040e10' Parameter ? has no default value

Hi

New to jQuery and trying to implement it on my site.
I have an .asp site with a form attached to an Access Db.

When trying to insert the form into the Db, the page halts on the #datepicker giving me this error message:

Microsoft JET Database Engine error '80040e10'
Parameter ?_13 has no default value.
/asfalt_ny.asp, line 71

This is Parameter 13:

  1. MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param13", 202, 1, 50, Request.Form("datepickerU")) ' adVarWChar

Head section:

  1.   <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
  2.   <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
  3.   <link rel="stylesheet" href="/resources/demos/style.css" />
  4.   <script>
  5.     $(function() {
  6. $("#datepickerU").datepicker({dateFormat: 'dd.mm.yy'});
  7.   });
  8.   </script>

Form:

  1. <td height="22" align="left"><input name="DatoU" type="text" class="ProvDet" id="datepickerU" size="30" /></td>

The date is displaying perfectly in european format in the TextField, just the way I want it.
I'm suspecting it might be a database issue, but at this time I'm not sure, have tried using both string and date format in Access table row.
Any help would be greatly appreciated, it's driving me nuts!

Regards,
ChrVik

DWCS5 | Asp | Access