當(dāng)前位置:首頁(yè)文章首頁(yè) IT學(xué)院 IT技術(shù)

asp刪除文件代碼分享

作者:  來(lái)源:  發(fā)布時(shí)間:2011-6-17 15:03:49  點(diǎn)擊:

'下面提供給大家分享的是關(guān)于asp刪除文件代碼,希望能夠?qū)Υ蠹矣兴鶐椭?/p>

程序名:delfile.asp
'關(guān)鍵參數(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('成功刪除文件,將返回上一頁(yè)!');"
response.write"this.location.href='java script:history.back();'</script>"
end sub
%>

相關(guān)軟件

相關(guān)文章

文章評(píng)論

軟件按字母排列: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z