consulta

01/07/2004 - 19:11 por Pablo | Informe spam
Alguien me puede decir como puede poner este codigo
utilizando la dll MSXML 2

<?xml version="1.0">

muchas gracias..
 

Leer las respuestas

#1 skarface
06/07/2004 - 12:59 | Informe spam
supongo a que te refieres a XSL:
<xsl:output
method = "xml" | "html" | "text" | QName
version = nmtoken
encoding = string
omit-xml-declaration = "yes" | "no"
standalone = "yes" | "no"
doctype-public = string
doctype-system = string
cdata-section-elements = QNames
indent = "yes" | "no"
media-type = string
/>el output te da la oportunidad de aniadir un monton de cosas, ejemplo el
method ="xml" le indica al transformador que se va a generar un doc xml, la
version bueno tu le indicas la version de el standard que estas usando en tu
caso 1.0Otro ejemplo con VBScript:Set xmlDoc CreateObject("Msxml2.DOMDocument.4.0")
Set stylePI = xmlDoc.createProcessingInstruction("xml-stylesheet",
"type=""text/xsl"" href=""show_book.xsl""")
xmlDoc.appendChild(stylePI)"Pablo"
wrote in message news:2420b01c45f8e$7b875d00$
Alguien me puede decir como puede poner este codigo
utilizando la dll MSXML 2

<?xml version="1.0">

muchas gracias..

Preguntas similares