Ver Mensaje Individual
  #3 (permalink)  
Antiguo 15/07/2003, 20:07
Relok
 
Fecha de Ingreso: julio-2003
Ubicación: Madrid
Mensajes: 3
Antigüedad: 21 años, 8 meses
Puntos: 0
<%
xmlDoc = "data.xml"
xslDoc = "gbook.xsl"

Set xmlObj = CreateObject("Microsoft.XMLDOM")
xmlObj.Async = False
xmlObj.Load(Server.MapPath(xmlDoc))

Set xslObj = CreateObject("Microsoft.XMLDOM")
xslObj.Async = False
xslObj.Load(Server.MapPath(xslDoc))

Response.Write(xmlObj.transformNode(xslObj))
Set xmlObj = nothing
Set xslObj = nothing
%>

no se si esto es lo que buscas

saludso