Frameset in xsl

wxdqz

New Member
hey guys, I have the following xsl file and it does not work (frameset would not be visible). Any ideas why?

___________________________________________________________
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="HeadComponent">

<HTML>
<body>
<table border="0" cellpadding="4" cellspacing="0">
<tr>
<object>
<FRAMESET cols="245,1000" border="0" framespacing="0" frameborder="0">
<FRAME SRC=http://www.webdeveloper.com/forum/archive/index.php/"http://www.google.com" name="left_frame" scrolling="no"></FRAME>
<FRAME SRC="http://www.google.com" name="right_frame"></FRAME>
</FRAMESET>
</object>
</tr>
</table>
</body>
</HTML>

</xsl:template>
</xsl:stylesheet>
 
Back
Top