Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem with fonts displayed on webpage

Status
Not open for further replies.

Christiana

Technical User
Apr 24, 2001
21
0
0
CY
I'm using Access 2000 to store my data and asp to display its contents to the web. My data are written in greek. When I display it on the web though they are replaced with questionmarks (?) and some latin characters. I don't have problem with the words I wrote directly on the page.
Does anyone know what has to be done?
Please, any suggestions are acceptable as i'm looking at a deadline VERY soon.
Thank you in advance
Christiana
 
As I look in my huge HTML reference book, I see the codes to declare that the HTML document is in greek.

To declare what language the page is, you use this code in the <HEAD> of your document:

<meta http-equiv=&quot;Content-Language&quot; content=&quot;language-code&quot;>

The greek code I have here is &quot;el&quot;, so your code should look like this:

<meta http-equiv=&quot;Content-Language&quot; content=&quot;el&quot;>

Hope this does it for you! ~Javrix

If you gave an infinate number of rednecks, an infinate number of shotguns to shoot at an infinate number of street signs, they would eventually write Romeo and Juliet in braille.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top