below is my script in asp which works well and updates my access dtabase table, BUT [ SQLStmt = SQlstmt & "CCDATE=#" & Now & "# "] This piece does not update with the date. Am I missing a quote or.....
Thanks as always,
Ify
SQlstmt = "Update BILLTABLE Set "
SQLStmt = SQlstmt & "COMMENTS ='" & Replace(Strpriorcomments,"'","''") & " " & vbcrlf & Replace(Strcomments,"'","''") &"-" & Strtrace &";" & "',"
SQLStmt = SQlstmt & "CCDATE=#" & Now & "# "
SQLStmt = SQlstmt & "Where BILLNO = '" & StrbillNo &"'"
Conn.Execute(SQLStmt)
Thanks as always,
Ify
SQlstmt = "Update BILLTABLE Set "
SQLStmt = SQlstmt & "COMMENTS ='" & Replace(Strpriorcomments,"'","''") & " " & vbcrlf & Replace(Strcomments,"'","''") &"-" & Strtrace &";" & "',"
SQLStmt = SQlstmt & "CCDATE=#" & Now & "# "
SQLStmt = SQlstmt & "Where BILLNO = '" & StrbillNo &"'"
Conn.Execute(SQLStmt)