I have created a HTML file to load local XML file and read contents of it. Here is the code I am using to read local file
Function Loader(Location)
Dim xmlDoc, objNodeList, plot
Set xmlDoc = CreateObject("Msxml2.DOMDocument")
xmlDoc.load(Location)
Response.Write xmlSet(xmlDoc.xml,Location)
End function
If this file is in local file system it is perfectly loading all the xml files. But If i put this file in FTP and try to load local XML file this is not working. Please suggest me on this.
This is by design. Its to prevent security issues.