📄 noticeok.asp
字号:
<%@ LANGUAGE="VBSCRIPT" %>
<%option explicit%>
<%Dim ID,rs,rsstr%>
<!--#include file="conn.asp"-->
<%
if session("admin")="" then
response.redirect "admin.asp"
end if
ID=request("id")
set rs=Server.CreateObject("ADODB.Recordset")
rsstr="select * from [notice] where id= " & ID
rs.open rsstr,conn,1,2
rs.delete
rs.update
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
<html>
<head>
<title>操作成功</title>
<meta http-equiv="refresh" content='2; URL=notice.asp'>
</head>
<body>
<p align="center"><b>设置操作成功!</b></p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -