Re: [xsl] HTML to XML

Subject: Re: [xsl] HTML to XML
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Wed, 27 May 2009 17:20:31 +0200
Knight, Michel wrote:

Trying to get the title node content from menu_test.htm using test.xsl:
As you can see I've tried a few combination with no success, could
anybody educate me on the proper approach.

<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
xmlns:xhtml="http://www.w3.org/199/xhtml";>
                                 ^^^
That should be 1999 for the XHTML 1 namespace as defined by the W3C.

<xsl:template match="xhtml:html">
<html>
<head>
<title>Testing</title>
</head>
<body>

<!--xsl:value-of select="xhtml:head/xhtml:title"/-->

That should do, once the namespace problem above is corrected.


--

	Martin Honnen
	http://msmvps.com/blogs/martin_honnen/

Current Thread