Ciao,

vorrei mettere un msbox co ELIMINA - ANNULLA a video prima di cancellare un record in mmdo che l'utente sia avvisato.


codice:
<%
	 id = Request.QueryString("id")
	 If  id <> "" then
		Conn.Execute("DELETE * FROM ddt WHERE id = " + id)
		conn.Close
        set conn = nothing
	 End If
	Response.Redirect("/ddt.asp?delrec=ok")
%>