I am having a really annoying problem. I have a record in a database that I can see through an asp page just fine. I update it through another asp still fine it updates with no problems but when I go back to view that record I can not see the record even though it is in the database. Here is the code but I do not think its the code because it updates fine.
sqlString = "update dailydata"
sqlString = sqlString & " Set Dte = '" & datefield & "'"
sqlString = sqlString & ", tblDept_DeptID = '" & department & "'"
sqlString = sqlString & " WHERE DataID = '" & DataID & "'"
SET RS = Conn.Execute( sqlString )
Maybe my SQL is off. Doubt it but who knows.
AJ
sqlString = "update dailydata"
sqlString = sqlString & " Set Dte = '" & datefield & "'"
sqlString = sqlString & ", tblDept_DeptID = '" & department & "'"
sqlString = sqlString & " WHERE DataID = '" & DataID & "'"
SET RS = Conn.Execute( sqlString )
Maybe my SQL is off. Doubt it but who knows.
AJ