and one last question
how write <br> in xml file for new line in text?
where i can read about this?
Thanks!
Printable View
and one last question
how write <br> in xml file for new line in text?
where i can read about this?
Thanks!
<br />
It's considered an empty node, which can be written as above.....
Thanks!
i try this, but is not work
because i need use <xsl:stylesheet for xml transform.
you have to enlcose it in cdata
Code:<![CDATA[
<br/>
]]>
and i see br in the page, but i need new line.
thank you for help!
<br /> is an XHTML tag. In XML for a newline, well, hit enter and have the element that encloses the newlines have xml:preserve-spaces (or something like that, you need to look it up) set to "1".
Thank you!
:)