加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
admin_delreply.asp 609 Bytes
一键复制 编辑 原始数据 按行查看 历史
小小猫猫 提交于 2022-06-18 22:58 . feat: migrate encoding to utf8
<!-- #include file="include/template/page_instruction.inc" -->
<!-- #include file="config/config.asp" -->
<!-- #include file="include/utility/common.asp" -->
<!-- #include file="admin_verify.asp" -->
<%
response.expires=-1
if Not isnumeric(Request.QueryString("id")) then
Response.Redirect "index.asp"
Response.End
end if
set cn=server.CreateObject("ADODB.Connection")
set rs=server.CreateObject("ADODB.Recordset")
CreateConn cn
cn.Execute "DELETE FROM reply WHERE articleid=" & Request.QueryString("id"),,129
cn.Close
set cn=nothing
Response.Redirect "admin.asp?page=" &Request.QueryString("page")
%>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化