Hello!
I use the code belowe to get the xml and xsl documents from a server and showd in a web-page(asp-iis).
When i load the page from my iis on my pc(WinXPProf) everything works fine, but when i move it to our intranet-server i get a "Access denied" error on the xml.load line.
The intranet server is another server than the one with the xml-documents.
I use the code belowe to get the xml and xsl documents from a server and showd in a web-page(asp-iis).
When i load the page from my iis on my pc(WinXPProf) everything works fine, but when i move it to our intranet-server i get a "Access denied" error on the xml.load line.
The intranet server is another server than the one with the xml-documents.
Code:
'Load the XML
set xml = Server.CreateObject("Microsoft.XMLDOM")
xml.async = false
xml.load("\\server\NT\Data\"&request.querystring("Fil"))
'Load the XSL
set xsl = Server.CreateObject("Microsoft.XMLDOM")
xsl.async = false
xsl.load("\\server\NT\Display.xsl")
Response.Write(xml.transformNode(xsl))