%
IF not(Session("KEY")="1") THEN
response.write ""
response.end
END IF
'==========================================
'
' SuperCMS新闻文章内容管理系统 V 1.0
'
' 官方网址:http://www.supercms.cn
' www.supercms.net
'
'==========================================
'程序名称: SuperCMS新闻文章内容管理系统
'英文名称:Super Content Management System
'作 者: 创意小子
'联系 Q Q: 77801933
'
'程序创建时间:2005-6-10
'程序完成时间:2005-8-1
'==========================================
'请尊重作者版权不要删除以上信息
'
'力争做国内最好最实用的开源网站内容管理系统
'
'特别感谢玄鸟科技提供的大力支持
' http://www.superbtec.com
'==========================================
%>
<%
dim sql
dim rs
path=request("path")
file=request("file")
set rs=server.createobject("adodb.recordset")
sql="delete from article where newsid="&request("ID")
rs.open sql,conn,1,1
rs.close
set rs=nothing
conn.close
set conn=nothing
FiLePaTh = Server.MapPath("..")& "/" & path& "/" &file
Set fso = CreateObject("Scripting.FileSystemObject")
fso.DeleteFile(filepath)
Set fso = nothing
response.redirect "Articlemanage.html"
%>