Busco algún ejemplo de un parse en asp.
Gracias!
![Adios](http://static.forosdelweb.com/fdwtheme/images/smilies/adios.gif)
| |||
|
| |||
<% 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 |