⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 del_area.asp

📁 一个关于房产的asp程序
💻 ASP
字号:
<!--#include file=../include/config.asp-->
<!--#include file=../include/conn_view.asp-->
<!--#include file=../include/access.asp-->
<!--#include file=../include/function.asp-->

<%
'if request("del")=1 then
if request("id")="" or not isnumeric(request("id")) then
outerr("参数传递出错!")
		out("<a href=""javascript:window.go(-1)"">返回</a>!")
response.end
end if
	dim id,strSql1
	strSql1="delete from [area] where id=" & request("id")
	conn.execute(strSql1)
    response.redirect Request.ServerVariables("HTTP_REFERER")
    response.end
'end if
%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -