<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="Connections/test.asp" -->
<!--#include file="validate.asp" -->
<%
Dim test
Set test=Server.CreateObject("ADODB.Connection")
test.Open MM_test_STRING
Dim theid,testString
theid=Cint(trim(Request.QueryString("id")))
testString="delete from feedback where id=" & theid
test.Execute testString
test.Close
Set test=nothing
Response.Redirect("10.1.asp")
%>
--
FROM 202.103.241.*