Go back to list of previously asked questions and answers
Question: |
I am using your NewsNArticles Web service to call GetNewsNArticles Web method and here is the XSLT file that I have written to transform the returned XML into HTML. I use MSXML 4.0 DOM in an ASP page to call the Web service method and to apply the stylesheet. The Description tag in the Web service returned XML contains <BR> characters; How do I disable the escaping so that the transformed HTML contains the <BR> tag instead of the escaped less than and greater than characters?
|
Asked By: |
Ravneet |
Viewed: |
1191 |
Answer: |
You can use the disable-output-escaping="yes" attribute with xsl:value-of element in your stylesheet. Here is your updated stylesheet and the ASP code that you can try.
|
Go back to list of previously asked questions and answers
|