Slopey
Posts: 33
|
| Posted: 05/09/2007, 4:33 AM |
|
Hi All,
I'm trying to do the following in the server side on-click event of a button:
dim SQL
SQL = "UPDATE PendingReq SET ReqPendingStatus = 3 WHERE ReqId = " & CCGetParam("ReqId",0)
DBConnection1.execute(SQL)
This doesn't do anything unless I add
Response.End
after the DBConnection1.execute, and if I check for errors I don't get any. The SQL statement is valid and DOES work with the response.end, but does'nt do anything without it - no error.
Help????
|