关于ASP读取HTML的问题

我的代码是这样的head=LoadFile(path&"template/"&tempurl&"/head.html")Functionhead(a)Ifhead<>""... 我的代码是这样的
head=LoadFile(path & "template/" & tempurl & "/head.html")

Function head(a)
If head <> "" then temp_head = head_foot(head) end if
a = replace(a,"{head}",temp_head):head = a
End Function

Function LoadFile(m_Root)
Dim Filename,fso,hndFile
Filename = m_Root
If Right(Filename, 1)<>"/" And Right(Filename, 1)<>"\" Then Filename = Filename & "/"
Filename = Server.MapPath(Filename & m_FileName)
Set fso = CreateObject("Scripting.FileSystemObject")
set hndFile = fso.OpenTextFile(Filename) 这里是127行
if not hndFile.atendofstream then
LoadFile = hndFile.ReadAll
end if
Set hndFile = Nothing
Set fso = Nothing
End Function

如果目录中找不到head.html这个文件,系统就会报错
Microsoft VBScript 运行时错误 (0x800A0035)
文件未找到
/inc/temp.asp, 第 127 行

请问怎么屏蔽这个错误,也就是说在有head.html的时候读取。
没有则不读取,也不报错。。 请高手指点一下
展开
 我来答
缓步莫迟疑C
2012-06-22 · TA获得超过1.1万个赞
知道大有可为答主
回答量:6217
采纳率:73%
帮助的人:6488万
展开全部
Set fso = CreateObject("Scripting.FileSystemObject")
set hndFile = fso.OpenTextFile(Filename) 这里是127行
If not hndFile.atendofstream then
改成
Set fso = CreateObject("Scripting.FileSystemObject")
On Error Resume Next
set hndFile = fso.OpenTextFile(Filename)
If Err.Number<>0 Then Exit Function
If not hndFile.atendofstream then
80后邓老
2012-06-22 · TA获得超过885个赞
知道小有建树答主
回答量:1095
采纳率:0%
帮助的人:838万
展开全部
按照提示去操作吧,引入文件/inc/temp.asp。检查下是不是head=LoadFile(path & "template/" & tempurl & "/head.html")这里的路径不对或者有问题
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式