Xml
<br> or Chr (13) &CHR not available
Because XML will think of <br> as a node
I read Csdn.net's XML, and there's no newline symbol.
What should be done to ask?
Reply Person: Yeefly (Web Development Edition) () Prestige: 2002-12-26 17:52:24z Score: 0
?
Or how to wrap a line with an XSL implementation,
I use <xsl:value-of select= "Main/content"/>
It's not going to change.
Concern!!
Top
Reply person: zykj_2000 (I want to do FC simulator, who has 6502 data) () Prestige: 2002-12-26 18:10:09z Score: 14
?
Is it in the Web??
<! [Cdata[hello
<br>world]]>
Top
Reply person: JNKC (Jiangnan insect) () Prestige: 207 2002-12-26 18:10:36z Score: 14
?
XmlText = Replace (XmlText, "<br>", vbCrLf)
Top
Reply person: allforly (white blood wins) () Prestige: 126 2002-12-26 18:39:32z Score: 2
?
If the data you save is wrapped, the line is automatically wrapped in XML, for example:
bbbb
Aaaa
Cccc
You want to take out, the method is diverse, JavaScript uses Data.replace (/\n/g, "<br>")
ASP with data = replace (DATA,CHR (&CHR), "<br>")