In order to have a line Break in your XML file you have to add the <br> tag
You have to close the tag in order to be valid and in order to have it inside the XML you have to convert the < and > to < and >
See the sample bellow
<xmlRoot>
<NodeText> This is a Test with a Line Break <br>This Line has a break on HTML text</NodeText>
</xmlRoot>
If you are using XSL then you need the <BR /> tag
sample
<xmlRoot>
<NodeText> This is a Test with a Line Break <BR />This Line has a break on XSLT text</NodeText>
</xmlRoot>
Main Topics
Browse All Topics





by: DarthSonicPosted on 2009-10-26 at 00:43:51ID: 25660254
Linebreak within HTML is <br>. Linebreak within XML (PlainText) is vbCrLf.