displaying characters in multiple lines using xml ,
February 15, 2009 at 8:53 AM
Hi i am using xml and xsl to display characters in multiple lines the text content is like this "mm\r\nkk\r\njj" but i am unable to display this characters in multiple lines like below in the browser
mm kk jj
actually in our java class we are creating textnode for the above text using document object like doc.createTextnode("mm\r\nkk\r\njj") in xsl we are reading this data as <xsl:value-of select="text()"/>
could anybody suggest me how to display characters in multiple lines using xsl.