French Encoding

V

Vinoth

Hi,

Our Website is french website. When we search in google for our
site its showing the title name with some characters like -- droit
propriété industrielle, protection propriétà ... But in our
default.aspx page we given title as droit propriété industrielle,
protection propriété intellectuelle. we have added french encoding
meta tag like below.

<meta http-equiv="content-type" content="text/html;
charset=iso-8859-1">
<meta name="language" content="France, French">

But its still not showing exactly what we given in title for
Default.aspx. I have tried this also <meta
http-equiv="content-language" content="FR"> instead of <meta
name="language" content="France, French">. But still its not showing.
What could be the problem. Is i have to add anything extra to get
exact frech characters. If i got solution for this problem then
immediately it will come in Google site or it will take some time.


Thanks,
Vinoth
 
C

clintonG

I can't speak to all of the issues involved but to note that é should appear
as IE does render it when used in the <title> element and other browsers
should to. You may have other declarations incorrect.

search: localization asp.net


<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee.com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/




Hi,

Our Website is french website. When we search in google for our
site its showing the title name with some characters like -- droit
propriété industrielle, protection propriétà ... But in our
default.aspx page we given title as droit propriété industrielle,
protection propriété intellectuelle. we have added french encoding
meta tag like below.

<meta http-equiv="content-type" content="text/html;
charset=iso-8859-1">
<meta name="language" content="France, French">

But its still not showing exactly what we given in title for
Default.aspx. I have tried this also <meta
http-equiv="content-language" content="FR"> instead of <meta
name="language" content="France, French">. But still its not showing.
What could be the problem. Is i have to add anything extra to get
exact frech characters. If i got solution for this problem then
immediately it will come in Google site or it will take some time.


Thanks,
Vinoth
 
M

Mihai N.

Looks like the encoding is utf-8, not iso-8859-1, so try
<meta http-equiv="content-type" content="text/html;
charset=utf-8">

Mihai
 
G

Guest

Have you tried to encode the "é" as é ?
I had that problem and this is the way i used to get by...
 
G

Guest

Oupss sorry it got encoded by the server...
Have you tried to encode the "é" as & eacute ; (you have to remove the
white space between the & and the ;.... )
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top