I have an XSL file that I am using to output to XML....
Thanks to the help from k5tm....
The below example creates tags <tr> and <td>
<tr>
<td><xsl:value-of select="Title"/></td>
<td><xsl:value-of select="Description"/></td>
</tr>
But I need my tags to read
<item>
<title><xsl:value-of select="Title"/></title>
<description><xsl:value-of select="Description"/></description>
</item>
I can change them fine and the out put still works, although everything is placed on the same line. I cannot have the <tr> and <td> in my output because it will not work with the other application.
Is there a way to force a return, or start a new line?
THanks again this is a great forum....very helpful