当前位置:首页文章首页 IT学院 IT技术

asp删除文件代码分享

作者:  来源:  发布时间:2011-6-17 15:03:49  点击:

'下面提供给大家分享的是关于asp删除文件代码,希望能够对大家有所帮助。

程序名:delfile.asp
'关键参数: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
%>

相关软件

相关文章

文章评论

软件按字母排列: 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