📄 del_article.asp
字号:
<% option explicit%>
<%response.Buffer=true%>
<!--#Include file="conn1.asp"-->
<%
if session("login")<>"yes" then
response.write"此页只能版主有权使用。"
response.end()
end if
dim sql,id
id=Request.QueryString("id")
sql="Delete From article Where id=" & id
conn1.Execute(sql)
conn1.Close
set conn1=nothing
Response.Redirect "list_article.asp"
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -