Jul
04
2005
Deleting records
Posted by admin under
ADO database
When deleting records it is good enough just to build the SQL statement and call oConn.Execute:
<%
oConn.Execute "delete from xxx where id= " & Request.QueryString("id")
%>You will need to send an id in the QueryString.