现在想实现一个删除操作
要求图片物理删除
图片地址变空
请问如何操作可否提供参考源代码
<!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>
<!--#include file="../include/Config.asp"-->
<!--#include file="check_login.asp"-->
<% img=request("img")
response.write img
set rs=server.CreateObject("adodb.recordset")
sql="select * from corpuser_info where img='"&img&"'"
rs.open sql,conn,3,3
db=rs("img")
response.write db
FilePath=Server.MapPath(db)
Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")
IF fso.FileExists(FilePath) Then
fso.DeleteFile(FilePath)
End IF
Set fso = Nothing
rs.close
set rs=nothing
conn.close
set conn=nothing
response.write("图片删除成功")
%>
<body>
</body>
</html>
可以物理删除
但不能删除图片的地址在数据库的记录