當前位置: 首頁IT技術 → asp刪除文件代碼分享

asp刪除文件代碼分享

更多

'下面提供給大家分享的是關于asp刪除文件代碼,希望能夠對大家有所幫助。

程序名:delfile.asp
'關鍵參數(shù):struploadfiles 文件名稱
例:<a href="/delfile.asp?action=test.rar">刪除test.rar文件</a>

<%
struploadfiles=trim(request.querystring("struploadfiles"))
action=trim(request.querystring("action"))
response.write "成功刪除<font color=red>"&struploadfiles&"</font>文件!"
call delfiles(struploadfiles & "")
sub delfiles(struploadfiles)
if struploadfiles="" then exit sub
dim fso,arruploadfiles,i
set fso = createobject("scripting.filesystemobject")
fso.deletefile(server.mappath("" & struploadfiles))
set fso = nothing
response.write"<script language=java script>alert('成功刪除文件,將返回上一頁!');"
response.write"this.location.href='java script:history.back();'</script>"
end sub
%>

熱門評論
最新評論
發(fā)表評論 查看所有評論(0)
昵稱:
表情: 高興 可 汗 我不要 害羞 好 下下下 送花 屎 親親
字數(shù): 0/500 (您的評論需要經過審核才能顯示)