Link to home
Start Free TrialLog in
Avatar of dj_user4
dj_user4

asked on

Double quotes display unwanted character in HTML

We need to save HTML which is result of XSL transformation. We save it as .html file.
When we view that HTML file, double quotes and single quotes come as some unwanted character. Our client try to view this html file on blacmberry and they are seeing unwanted character. I am seeing unwanted character even if i open it in IE 8
I have uploaded .txt file. Save it as HTML file and open it in IE and you will come to know.

Open in new window

454.txt
Avatar of tculler
tculler
Flag of United States of America image

HTML/XML have various "special" characters that must be escaped if they're to be actually displayed. For example, if I have the tag

<p>Paragraph with a "double quote"</p>

It'll get all screwy on you because it's not sure what to do with the value "double quote". Instead, you need to change it to

<p>Paragraph with a & quot;double quote& quot;</p>
Remove the spaces between the ampersand and quot though. EE is just retarded in that aspect, and it'll display it incorrectly if I don't put it there.

I'll give a list of various characters that need escaping (again, remove the spaces in the sequence when you use them)

&  =  & amp;
"   =   & quot;
'  =  & apos; (XML only)
<  =  & lt;
>  = & gt;
Also watch out if your copy/pasting from word.

Word and other editers have alternate quote characters that don't transfer well to xml or html.

Your attachement includes them.

this is an example. I'm not sure how EE will process it

Its All in a Hard Days Work; Forget expense account meals and junkets.
Its All in a Hard Days Work; Forget expense account meals and junkets.

Open in new window

Badly it seems. In firefox I see all the quotes are shown as hex images.
Avatar of dj_user4
dj_user4

ASKER

How i can find replace double quote in .net code?

These are not double quotes in the normal sense ("). They are other characters that in some character sets show up like double quotes.

It can be hard to work out where and how to handle this when there are several stages of transition for the data... word->html text box->database->xml->html

First guess. Have you set your xsl to output in html format?






<xsl:stylesheet ...>
  <xsl:output method="html" />

Open in new window

it is double quote character. Save attached file as .txt and view it and you will come to know. When i do XSLT transform on xml and when it returns me result, it contains double quotes("). Now i need to save that output as file. our user need to see that file via URL. SO we are saving it as HTML.

do we have any otehr option?
The text file you uploaded contains characters that look like standard double quotes but they are not. I showed that by pasting from the text file into this forum. If they were double quotes they would have shown up correctly. On my browser they show up as hex images!

Different editors/browsers handle unknown characters in different ways. Somtimes they hide encoding issues. Firefox shows it as an image with hex numbers in it.

It sounds like your editor shows all variants as basic double quotes, therfore hiding the issue from you.

On my text editor they show up as left slanted double quotes, which indicated to me that an editor like word was involved (word uses multiple types of double quotes,  \\, ||, //)
This may clarify. This is your file in my text editor (notepad++) showing a slanted double and a slanted single quote. These are not the standard quote characters.
Cropper-Capture-1-.jpeg
if i display HTML i received after xslt transform on my application, it display correctly but when i save it to HTML file and then if i view it in IE, it shows unknown character. What is the problem & solution?
If i have double quotes from MS word, is it possible to display it properly in IE?
I came to know that it is smart tag which doesn't displayed properly in HTML. If we have straight quotation from word, then HTML can display it properly. Is there any way to display smart tag quotation in HTML?
ASKER CERTIFIED SOLUTION
Avatar of Tony McCreath
Tony McCreath
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial