Now the XML- XSL Combo....

In The file Hello.xml

Code:
<?xml version="1.0" ?>
<?xml:stylesheet type="text/xsl" href="view.xsl"?>
<greeting>
 <salutation>Hello</salutation>
 <target>World</target>
</greeting>
In the file view.xsl

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>