📄 delguestbook.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<html>
<head>
<!--#include file="conn.asp"-->
<title><%=title1%>-版主删除</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<%if session("admin")="mfkiqpl" then
dim id
id=trim(request("id"))
sql="delete * from guestbook where id="&id
conn.execute (sql)
closeconn
response.Write("<script>window.opener.location.reload();</script>")
response.Write("<script>window.close();</script>")
else
response.Write("<script>window.close();</script>")
end if
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -