delguestbook.asp

来自「一个有用的东西 希望大家喜欢 谢谢大家对本站的支持」· ASP 代码 · 共 23 行

ASP
23
字号
<%@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 + =
减小字号Ctrl + -
显示快捷键?