Alright, i'll take the time to write an entire script. You need to have a variable set to the job ID called "jobidn"
Dim conn
Set conn = Server.CreateObject("ADODB.Connection")
conn.provider = "Microsoft.Jet.OLEDB.4.0"
conn.open "put your database path here!!!"
'I'm going to update the current record...
strSQL = "UPDATE yourtablename SET isjobclosed='yes', timejobclosed ='" & now() & "' WHERE jobid = '"& jobidn "';"
conn.execute (strSQL)
conn.close
Set conn = NOTHING
Anything in italics might need to be changed
Edited by pmormr