I am writing a program to take information from teachers who use our Ed. web site. I also want them to be able to update their info when they return.<br><br>I use asp and an access database on an NT4.0 system.<br><br>For putting in new info:<br>Set RS = objConn.Execute("INSERT INTO Schools ( Name, School, Email) VALUES ('" & NewName & "','" & NewSchool & NewEmail & "')"<br><br>works great.<br>But when I try to update a record that is already there,<br><br>Set RS = objConn.Execute("UPDATE Schools ( Name, School, Email) VALUES ('" & NewName & "','" & NewSchool & NewEmail & "') WHERE Email = '" & NewEmail & "'"<br><br>does not work. Can anyone help me with this syntax?