Ciao a tutti,
spero in un vostro aiuto.
Con il seguente codice asp
potrei fare in modo che un secondo xml venga letto dallo stesso xsl?
ad esempio aggiunta di un secondo xml di nome
tabella.xml
Conto su di voi,
Andrea:hammer:
spero in un vostro aiuto.
Con il seguente codice asp
Codice:
<%@ Language=VBScript %>
<%
' prevent page caching
Response.CacheControl = "no-cache"
Response.AddHeader "Pragma", "no-cache"
Response.Expires = -1
id = Request.QueryString("Cat")
Cat = Request.QueryString("Cat")
number = Request.QueryString("n")
if number = "" then
number = "1"
end if
xslpath = Server.mappath("page2.xsl")
sourceFile = ("http://pf.tradedoubler.com/pf/pf?a=147617&&maxResults=10&categoryId="&id)
Set source = Server.CreateObject("Msxml2.DOMDocument")
source.async = false
source.load(sourceFile)
set xsldoc = Server.CreateObject("MSXML2.FreeThreadedDOMDocument")
xsldoc.async = false
xsldoc.load(xslpath)
set xsltemp = Server.createObject("MSXML2.XSLTemplate")
xsltemp.stylesheet=xsldoc
set xslproc = xsltemp.createProcessor
xslproc.input=source
xslproc.output=Response
' parameter for message group
xslproc.addParameter "mastercategoria",Cat
xslproc.addParameter "pagenumber",number
xslproc.transform
Response.End
%>
potrei fare in modo che un secondo xml venga letto dallo stesso xsl?
ad esempio aggiunta di un secondo xml di nome
tabella.xml
Conto su di voi,
Andrea:hammer: