Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a ASP.NET Web app and here is the below entry in Web.Config

<add key="FromName" value="Test™"/>

When I try to browse the site I get the following error-

Configuration file is not well-formed XML

It converts the above key to the below way-

<add key="FromName" value="Test�"/>

In IIS I have set the UTF-8 format. I have been trying to look for an answer for a quite long time.

Does somebody have any idea on the same?

share|improve this question

2 Answers

up vote 6 down vote accepted

You should use the ASCII value:

<add key="FromName" value="Test&#0153;" />

If this returns as Test&#0153;, then you'll have to encode the result.

share|improve this answer
Neil - Thanks a lot, It works. – Punit Apr 18 '12 at 12:46

You should be using the trademark xml entity: http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references

share|improve this answer
2  
yeah, what Neil Knight said – Joe Flateau Apr 18 '12 at 12:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.