del_msg.asp

来自「后台管理系统」· ASP 代码 · 共 25 行

ASP
25
字号
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="conn.asp"-->
<%
'删除新闻记录
if request.querystring("action")="multi" then
str_del=request.form("news_id")
if len(str_del)=0 then 
response.Write "<script LANGUAGE='javascript'>alert('请选择要删除的留言!');history.go(-1);</script>"
response.end()
end if
deltxt="delete from msg where id in("&str_del&")"
conn.execute deltxt
conn.close
set conn=nothing
response.write("<script>window.alert('留言删除成功!');window.location.href='manage_msg.asp';</script>")
end if
if request.querystring("action")="sing" then
deltxt="delete from msg where id = "&request.querystring("msg_id")
conn.execute deltxt
conn.close
set conn=nothing
response.write("<script>window.alert('留言删除成功!');window.location.href='manage_msg.asp';</script>")
end if
'删除动作结束
%>

⌨️ 快捷键说明

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