Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 1 of 1

Thread: Outputing Special Characters in XmlPackages

  1. #1
    Rob is offline Senior Member
    Join Date
    Aug 2004
    Posts
    3,037

    Default Outputing Special Characters in XmlPackages

    How to put special chars into XmlPackages. See this page for char encoding:

    http://htmlhelp.com/reference/charset/

    For example, you can't use   it is not a valid XML escape character you need to use & # 1 6 0 ; and your output encoding should be iso-8859-1.

    To output a copyright symbol, in HTML it is © but in XmlPackage it would be & # 1 6 9 ; (no spaces in between those characters. I had to put spaces so the forums don't output it as &#169

    There are only five character entities in XML: &, <, &gt:; " and '

    All other escape sequences are hex or decimal character values of the encoding that is set for output.

    etc.
    Last edited by Rob; 09-22-2007 at 10:58 AM.