if request("id")="" or isnumeric(request("id"))=false then
outerr("参数出错了!")
response.end
end if
dim delusertype
delusertype = request.QueryString("uu")
if delusertype="user" then
conn.execute"delete from [user] where id="&request("id")
elseif delusertype="zjuser" then
conn.execute"delete from [user_zj] where id="&request("id")
else
response.write"alert('执行非法操作!');history.go(-1)"
end if
conn.close
set conn=nothing
response.redirect Request.ServerVariables("HTTP_REFERER")
%>