想用ASP做动态删除文件,我的代码只能删除数据库中的记录。怎么改才能做到删除文件和数据呢?
<%@LANGUAGE="VBSCRIPT"CODEPAGE="936"%><!--#includefile="conn.asp"--><%Setrs=Server.Cr...
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="conn.asp" -->
<%
Set rs=Server.CreateObject("ADODB.Recordset")
sqlstr="select * from upload where tname='"&request.QueryString("FileName")&"'"
rs.open sqlstr,conn,1,3
if not rs.eof then
rs.delete
rs.update
end if
rs.close
set rs=nothing
'if request("FileName")<>"" then
'set fso=CreateObject("scripting.filesystemobject")
'fso.deleteFile(request("FileName"))
'end if
%>
<script language="javascript">
alert("文件删除成功!");
window.location.href='index.asp';
</script>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
</body>
</html>
表名upload,属性:ID:自动编号,tname:从文件中读取的文件名,文件路径upload\images\goods
如果调试成功可以加到100分。 展开
<!--#include file="conn.asp" -->
<%
Set rs=Server.CreateObject("ADODB.Recordset")
sqlstr="select * from upload where tname='"&request.QueryString("FileName")&"'"
rs.open sqlstr,conn,1,3
if not rs.eof then
rs.delete
rs.update
end if
rs.close
set rs=nothing
'if request("FileName")<>"" then
'set fso=CreateObject("scripting.filesystemobject")
'fso.deleteFile(request("FileName"))
'end if
%>
<script language="javascript">
alert("文件删除成功!");
window.location.href='index.asp';
</script>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
</body>
</html>
表名upload,属性:ID:自动编号,tname:从文件中读取的文件名,文件路径upload\images\goods
如果调试成功可以加到100分。 展开
展开全部
path=Server.MapPath("request("FileName")")
Set fso = server.CreateObject("Scripting.FileSystemObject")
IF (fso.FileExists(path)) Then
Set delfile = fso.GetFile(path)
delfile.Delete
set delfile=nothing
response.write("删除成功!<br/>") '删除成功成功提示!
else
response.write("出错了!不存在的文件") '出错提示,当服务器不存在该文件时
end if
set fso=nothing
这段是删除服务器文件的核心代码,你可以参考一下~希望对你有用
Set fso = server.CreateObject("Scripting.FileSystemObject")
IF (fso.FileExists(path)) Then
Set delfile = fso.GetFile(path)
delfile.Delete
set delfile=nothing
response.write("删除成功!<br/>") '删除成功成功提示!
else
response.write("出错了!不存在的文件") '出错提示,当服务器不存在该文件时
end if
set fso=nothing
这段是删除服务器文件的核心代码,你可以参考一下~希望对你有用
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询