📄 del_img.asp
字号:
<!--#include file="../conn2.asp" -->
<!--#include file="set.asp"-->
<%
Dim FSO,filepath,photofile,file
photofile=request("photofile")
FileNameList=split(request("photo"))
filepath=server.mappath(photofile)
for i=0 to ubound(FileNameList)
FileName=replace(FileNameList(i),",","")
on error resume next
Set FSO = CreateObject("Scripting.FileSystemObject")
Set file = FSO.GetFile(""&filepath&"\"&FileName&"")
file.delete
next
response.redirect""&request("url")&""
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -