Posted By:
john_helen
Posted On:
Friday, April 23, 2004 11:11 PM
sample xsltTree.async = false; xsltTree.load("hello.xsl"); resTree.innerHTML = srcTree.transformNode(xsltTree); } ]]> Hello I am learning XML and XSL from a simple tutorial in http://msdn.microsoft.com/library/default.asp?url=/library/en-us/xmlsdk/htm/xslt_howdoi_2put.asp This tutorial is for "Initiate XSLT from an HTML Page" So I create 3 files as the tutorial and click on the file hello.htm However, I can not get "Hello the word" as the tutorial say. Could you please help. (I run winXP and IE6.0) Here is the file hello.html
More>>
sample
xsltTree.async = false;
xsltTree.load("hello.xsl");
resTree.innerHTML = srcTree.transformNode(xsltTree);
}
]]>
Hello
I am learning XML and XSL from a simple tutorial in
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/xmlsdk/htm/xslt_howdoi_2put.asp
This tutorial is for "Initiate XSLT from an HTML Page"
So I create 3 files as the tutorial and click on the file hello.htm
However, I can not get "Hello the word" as the tutorial say. Could you please help. (I run winXP and IE6.0)
Here is the file hello.html
Here is the file hello.xml
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="hello.xsl"?>
An XSLT Programmer
Hello, World!
Here is the file hello.xsl
<?xml version="1.0"?>
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
from