Hey there. I have a problem whit some date insert.
I Have 3 dropdownlists and i want the code to get the values and insert them in the database,
the code looks like this:
yyyy = Request.Form("y yyy")
mm = Request.Form("m m")
dd = Request.Form("d d")
strborn = DateSerial(yyyy ,mm,dd)
Its insert everything but not the date. only get 0000:00:00.
the Datatype is set to DATETIME and its NULL
Go crazy,, need help =)
I Have 3 dropdownlists and i want the code to get the values and insert them in the database,
the code looks like this:
yyyy = Request.Form("y yyy")
mm = Request.Form("m m")
dd = Request.Form("d d")
strborn = DateSerial(yyyy ,mm,dd)
Its insert everything but not the date. only get 0000:00:00.
the Datatype is set to DATETIME and its NULL
Go crazy,, need help =)
Comment