|
I'm building an automated RSS feed in ASP.NET and occurrences of apostrophes and hyphens are rendering very strangely:
"Here's a test" is rendering as "Here’s a test"
I have managed to circumvent a similar problem with the pound sign (£) by escaping...
Started by Chris on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
<![CDATA[Here's a test.
Easy and it works.
I would just put "Here's a test" into a CDATA tag.
|
|
In the spirit of my other questions regarding "common programming mistakes ... to avoid"
What are some common programming mistakes for a ColdFusion programmer to avoid?
Started by Andrew Siemer on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
pound signs unless you are outputting data or otherwise creating a string (don't do this: myFunction.
|