xsl-list
[Top] [All Lists]

IE 5.5 - special characters

2002-10-23 07:27:13

Hi,

I am trying to include tabs in my html output. But i dont see them.
I tried using 	  and  	  I am using IE 5.5, MSXML 3.0 replace mode

Shree


XSLT FIle
------------

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl
="http://www.w3.org/1999/XSL/Transform";>
     <xsl:output method="html" indent="yes" version="1.0" encoding
="UTF-8"/>

     <xsl:template match="/PrdData">
     <html>
     <head>
     </head>
          <body><xsl:apply-templates select
="InpData|PrdReturns|MsgName"></xsl:apply-templates></body>
     </html>
     </xsl:template>

     <xsl:template match="InpData|PrdReturns|MsgName|@*">
          <xsl:text disable-output-escaping="no">&#x9;</xsl:text><h1><u>
          <xsl:value-of select="name()"></xsl:value-of></u></h1><br></br>
          <xsl:for-each select="@*">
               <xsl:text disable-output-escaping="yes">&#9;</xsl:text>
               <xsl:value-of select="name()"></xsl:value-of>
= <xsl:value-of select="."></xsl:value-of>
          </xsl:for-each>
          <xsl:apply-templates select
="Contract|Interface"></xsl:apply-templates>
     </xsl:template>


     <xsl:template match="Contract|Interface|@*">
          <h1><u><xsl:value-of select="name
()"></xsl:value-of></u></h1><br></br>
          <xsl:for-each select="@*">
               <xsl:text disable-output-escaping="yes">&#x9;</xsl:text>
               <xsl:value-of select="name()"></xsl:value-of>
= <xsl:value-of select="."></xsl:value-of><br></br>
          </xsl:for-each>
          <xsl:apply-templates select="Loan"></xsl:apply-templates>
     </xsl:template>

     <xsl:template match="Loan|@*">
          <h1><u><xsl:value-of select="name
()"></xsl:value-of></u></h1><br></br>
          <xsl:for-each select="@*">
               <xsl:text disable-output-escaping="yes">&#x9;</xsl:text>
               <xsl:value-of select="name()"></xsl:value-of>
= <xsl:value-of select="."></xsl:value-of>
          </xsl:for-each>
     </xsl:template>

</xsl:stylesheet>






 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>