<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsp="http://www.apache.org/1999/XSP/Core" xmlns:mystuff="mystuff.com" > <xsl:template match="mystuff:data"> <html> <head> <title></title> </head> <frameset rows="100,*"> <frame name="top" src="{@frame-top}" marginwidth="10" marginheight="10" scrolling="no" frameborder="0"> <xsl:attribute name="noresize"/> </frame> <frameset cols="140,*"> <frame name="side" src="{@frame-sidebar}" marginwidth="0" marginheight="0" scrolling="no" frameborder="0"> <xsl:attribute name="noresize"/> </frame> <frame name="main" src="{@frame-main}" marginwidth="0" marginheight="0" scrolling="auto" frameborder="0"/> </frameset> </frameset> </html> </xsl:template> </xsl:stylesheet>
|
- [C1] Generating a HTML frameset using XML/XSLT Adrian Geissel
- Re: [C1] Generating a HTML frameset using XML/XSLT Paul Sprague
- Re: [C1] Generating a HTML frameset using XML/XSLT Paul Sprague
- Re: [C1] Generating a HTML frameset using XML/XSLT Benoît Chauvet
- Re: [C1] Generating a HTML frameset using XML/XSL... Adrian Geissel
- RE: [C1] Generating a HTML frameset using XML/XSLT Kevin D'Allaird