sub generateCategoryXML_helper()
dim FSO, fileOut
set FSO = CreateObject("Scripting.FileSystemObject")
set fileOut = FSO.CreateTextFile(Server.MapPath("categoryTree.xml"), True)
fileOut.WriteLine("<?xml version=""1.0"" encoding=""UTF-8""?>")
set RS_categoryXML = callStoredProcedure("generateCategoryXML", null)
while not RS_categoryXML.EOF
fileOut.Write(RS_categoryXML(0))
RS_categoryXML.MoveNext
wend
end sub
的fileOut.Write(RS_categoryXML(0))拋出一個錯誤:Microsoft VBScript運行時錯誤:無效的過程調用或參數VBscript記錄設置w/XML數據輸出爲字節數組。 Microsoft VBScript運行時錯誤:無效的過程調用或參數
RS_categoryXML(0)包含一個XML文檔。 RS_categoryXML(0)存儲爲字節數組。爲什麼?它應該是一個很長的字符串,我可以寫入該文件,但由於某種原因它存儲爲字節數組,並且無法輸出。
感謝,
托馬斯