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:
- MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param13", 202, 1, 50, Request.Form("datepickerU")) ' adVarWChar
Head section:
- <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
- <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
- <link rel="stylesheet" href="/resources/demos/style.css" />
- <script>
- $(function() {
- $("#datepickerU").datepicker({dateFormat: 'dd.mm.yy'});
- });
- </script>
Form:
- <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