I want to add the date where the id = the form field id
myDSN ="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.Mappath("../fpdb/test.mdb")
set conntemp=server.createobject("adodb.connection")
conntemp.open myDSN
mySQL = "UPDATE part_tracker SET detail_comp = #" & Date() & "# WHERE ID = ::ID:: "
conntemp.execute(mySQL)
conntemp.close
set conntemp=nothing
i get this error: Microsoft JET Database Engine error '80040e14'
Syntax error (missing operator) in query expression 'ID = ::ID::'.