vote up 1 vote down star

I have a winForm application that generates an .aspx file based on the user input in the application. The problem happens when a user enters the French letters like "é", "à", "è", "â", "ù", "ô", "ê" and "ç". It is supposed to look like a simple text on the page but it doesn't. Any ideas?

flag

44% accept rate
Can you clarify what you mean by "It is supposed to look like a simple text"? Do you mean the accented characters aren't displaying correctly, or that you want them stripped? – Dana Mar 4 at 22:12
I'm slightly confused, are you trying to convert é to e for display, or is é coming out as &alt130 or something to that effect? – Dillie-O Mar 4 at 22:18
You have to give us more information before we can help you. If it doesn't look like simple text, then what does it look like? – Eddie Mar 4 at 22:24
hi, I'm not from France. I don't know how this letters look like anyway, but my user (which happens to be from France) has this issue. He just said that the letters don't come out good. I assume that I would have to change my regional and language settings and then try to simulate the issue. – Ivan Mar 5 at 8:44
I assume that I need to check the encoding of my TextWritter object, which I use to write to my .aspx page, like Robert said. I apologize if I haven't been more clear. I am going to try that now. – Ivan Mar 5 at 8:47

3 Answers

vote up 3 vote down check

Assuming you want the characters to be displayed with the accents, circumflexes, etc. try the following:

Add the following to the <head> of each (generated) page:

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

Make sure that the .aspx files themselves are saved as UTF-8 files.

Note: I'm assuming here that an .aspx file is somewhat similar to a .jsp file. If that assumption is false, you should probably ignore this advice.

link|flag
I was constantly trying that meta tag with charset=UTF-8, but haven't set the encoding of my textWritter, like you and the others suggest. So I think that TextWriter tw = new StreamWriter("Default.aspx", false, Encoding.UTF8); will do the trick. – Ivan Mar 5 at 9:02
vote up 0 vote down

What does the text look like? Have you ensured the encoding type supports extended characters?

link|flag
vote up 1 vote down

How are you creating the .aspx file? If you're using a TextWriter, check the Encoding. If you're trying to write an array of bytes to a FileStream, be sure you use the right encoding when converting from String to Byte[]. UTF-8 is usually the best encoding for the web.

link|flag

Your Answer

Get an OpenID
or

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