ASP文件删除程序出错无效使用 Null: 'replace'

</body></html><%'过程:删除文件SubDelFile(fileurl)dimtemp_fileurl,FilePath,fsoDelservername=... </body>
</html>
<%
'过程:删除文件
Sub DelFile(fileurl)
dim temp_fileurl,FilePath,fsoDel
servername=Cstr(Request.ServerVariables("SERVER_NAME"))
temp_fileurl=trim(fileurl)
temp_fileurl=replace(temp_fileurl,"http://"&servername,"")
if temp_fileurl<>"" then
if instr(temp_fileurl,"http://")>0 then '是否为网上文件
else
set fsoDel=CreateObject("Scripting.FileSystemObject")
FilePath=Server.MapPath(temp_fileurl)
if fsoDel.FileExists(FilePath)then '文件是否存在
fsoDel.Deletefile(FilePath) '删除文件
set fsoDel=nothing
end if
end if
end if
end sub
%>
展开
 我来答
宇鹏停车棚
2009-10-16 · TA获得超过193个赞
知道小有建树答主
回答量:606
采纳率:85%
帮助的人:171万
展开全部
删除程序出错无效使用 Null: 'replace'
这表示字段fileurl中有NULL值,你可以在输出时加个""空字符再进行替换就不会出错了。
修改如下:
temp_fileurl=replace(temp_fileurl,"http://"&servername,"")
改为:
temp_fileurl=replace(temp_fileurl&"","http://"&servername,"")
michalee
2009-10-16 · TA获得超过675个赞
知道小有建树答主
回答量:252
采纳率:0%
帮助的人:255万
展开全部
servername=Cstr(Request.ServerVariables("SERVER_NAME"))此句改为:
servername="http://"+Cstr(Request.ServerVariables("SERVER_NAME"))

replace(temp_fileurl,servername,"")变成这样就可以了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式