Response.Write "Details of <b>" & Request("User") & "</b> has been successfully updated<br>"
end if
oRS.Close
oConn.Close
Set oRS = Nothing
Set oConn = Nothing
%>
ANSWER: trying putting
response.write ssql
response.end()
before oConn.Execute (sSQL)
then send me what it prints out.
---------- FOLLOW-UP ----------
QUESTION: It does not print out anything, the code executes but the database is not updated.
Answer if that didn't print anything out then there is something wrong with
If Request("Submit") = "update" Then
Check what value Request("Submit") is print by doing this before the
If Request("Submit") = "update" Then