Hi,
I searched the forum for answer to this, but couldn't fnd anything, although there were some articles that came close.
Below is my update query code, but I keep getting "expected end of statement" errors. I'm a newbie to ASP so I assume it's a syntax error of some sort.
Thanks for the help.
I searched the forum for answer to this, but couldn't fnd anything, although there were some articles that came close.
Below is my update query code, but I keep getting "expected end of statement" errors. I'm a newbie to ASP so I assume it's a syntax error of some sort.
Code:
set Conn=Server.CreateObject("ADODB.Connection") set rsUpdate = server.CreateObject("ADODB.Recordset") Conn.open "Driver={SQL Server}; Server=server;Database=minel;UID=user;PWD=pwd;" set rsUpdate = conn.Execute "Update usertbl SET written_exam = '" & Trim(Request.Form("written_exam")) & "' , " & _ " where user_ID = " & Request.Form("user_ID")
Comment