I do not have disk access on the server so I need to load a XSL stylesheet from a remote location.
Instead of this...
set xsl = Server.CreateObject("MSXML2.DOMDocument")
xsl.async = false
xsl.load(Server.MapPath("xsl.xsl"))
Is something like this possible to load a XSL stylesheet?
xsl.Open "get", "http://www.example.com/xsl.xsl" , False
xsl.Send
If above is not possible can the stylesheet be put internally in the ASP file. If so, how is that accomplished?
UPDATE - Full code
Dim xml, xsl, url, url2
url = "https://www.example.xml"
url2 = "http://www.example.com/xsl/xsl.xsl"
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
xml.Open "get", url, False
xml.Send
Response.ContentType = "text/xml"
set xsl = Server.CreateObject("MSXML2.DOMDocument")
xsl.async = false
xsl.load(Server.MapPath("xsl.xsl"))
'xsl.Open "get", url2, False
'xsl.Send
Response.AddHeader "Content-Type", "text/xml;charset=UTF-8"
Response.CodePage = 65001
Response.CharSet = "UTF-8"
Response.Write xml.responseXML.transformNode(xsl)
Try