del_news.asp

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

ASP
17
字号
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="conn.asp"-->
<%
'删除新闻记录
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 news where id in("&str_del&")"
conn.execute deltxt
conn.close
set conn=nothing
response.write("<script>window.alert('新闻删除成功!');window.location.href='manage_news.asp';</script>")
'删除动作结束
%>

⌨️ 快捷键说明

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