原本運(yùn)行正常的ASP頁面,今天突然提示:
復(fù)制代碼 代碼如下:
Microsoft VBScript 運(yùn)行時錯誤 錯誤 '800a01a8'
缺少對象: 'xmlDoc.documentElement'
/work/Menu.asp,行 80
找到相關(guān)代碼如下:
復(fù)制代碼 代碼如下:
Set xmlDoc=Server.CreateObject("MicroSoft.XmlDom")
xmlDoc.async = false
xmlDoc.load(Server.MapPath("Menu.xml"))
Set root = xmlDoc.documentElement.selectSingleNode("http://index")
會不會是沒有l(wèi)oad成功呢?輸出內(nèi)容看下:
復(fù)制代碼 代碼如下:
Response.Write(xmlDoc.xml)
空的,能肯定是load出問題了。查看下Menu.xml,發(fā)現(xiàn)xml文件內(nèi)容不知什么時候被改了:
復(fù)制代碼 代碼如下:
?xml version="1.0" encoding="gb2312"?>
index>
catalog title="分類一">
item id="class1_1">![CDATA[a href="class1_1.asp" target="main">子類11/a>]]>/item>
item id="class1_2">![CDATA[a href="class1_2.asp" target="main">子類12/a>]]>/item>
/catalog>
/index>
>![CDATA[a href="class2_3" target="main">子類23/a>]]>/item>
/catalog>
/index>
修改下xml文件,再瀏覽頁面就正常了。