求助:菜鸟对ASP中的一条SQL不知道要怎么改
Cmd.CommandText = "Insert into jobReq(txtName,Sex,txtEmail,txtTelephone,txtAddress,ReqId,Time,txtCom)" & _
" Values('" & Request("txtName") & "','" & Request("Sex") & "','" & Request("txtEmail") & "','" & Request("txtTelephone") & "'," & _
"'" & Request("txtAddress") & "','" & Request("ReqId") & "','" & Now() & "','" & Request("txtCom") & "')"
在这条语句中提示语法错误,我测试过,是Now()这里的错误,但不知道怎么错了,这里我用的数据库是Access。