I'm working with a COTS product that uses an XSL page for some of its output. We are trying to add line feeds to the text that is output by
We cannot figure out where line feeds are stripped from the text that is entered. We are considering adding a special character to the text and replacing it with a line feed in the XSL.
I know very little about XML and XSL - I would normally do this with a javascript function on the server-side but I'm not sure how to do this if it is even possible...
Programming today is a race between software engineers striving to build better and bigger idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rick Cook
Code:
<TD align="center">
<xsl:attribute name="headers">idFolderName<xsl:value-of select="position()"/></xsl:attribute>
[blue]<xsl:value-of select="@eAlertMessage"/>[/blue]
</TD>
</TR>
I know very little about XML and XSL - I would normally do this with a javascript function on the server-side but I'm not sure how to do this if it is even possible...
Programming today is a race between software engineers striving to build better and bigger idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rick Cook