I can read from Database, and my other projects (Using ASPMaker read/write records), but thought I'd get my hands dirty instead of cheating, but when trying to update a record I get a 500 error. The directory has read write permissions. Could someone check through my code to see first I've made a mistake.
<!--#include file="Connection.asp"-->
<%
Dim DeleteRS, Query
Set DeleteRS = Server.CreateObject("ADODB.Recordset")
Query = "Select * From notices Where [notice].[approved] = False AND [notice].[Notice_ID] = " & Request.qureystring("n")
response.write(Query)
DeleteRS.Open Query, adoCon, adOpenStatic, adLockOptimistic
DeleteRS.Delete
DeleteRS.Close
Set DeleteRS = Nothing
Set Query = Nothing
%>