Producing a new line in XSLT -


i want produce newline text output in xslt. ideas?

the following xsl code produce newline (line feed) character:

<xsl:text>&#xa;</xsl:text> 

for carriage return, use:

<xsl:text>&#xd;</xsl:text> 

Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -