Now the XML- XSL Combo....
In The file Hello.xml
In the file view.xslCode:<?xml version="1.0" ?> <?xml:stylesheet type="text/xsl" href="view.xsl"?> <greeting> <salutation>Hello</salutation> <target>World</target> </greeting>
Code:<?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl"> <xsl:template match="/"> <b><xsl:value-of select="greeting/salutation"/> <xsl:value-of select="greeting/target"/> !</b> </xsl:template> </xsl:stylesheet>




Reply With Quote