I've just started making a site support multiple languages.
The site stores all of the content in an access database.
I'm using ASP to display, enter and edit all the content.
I'm using utf-8 and Sever.HTMLEncode to display international chars from the database.
eg.
Code:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Code:
<%= Server.HTMLEncode("øΔευτέρα") %>
This seems to work fine but I can't work out how to enter international chars into the database. If I enter the "ø" char in a text field and write it into the database from ASP it changes into "ø"
Can anyone please tell me what I have to do to enter the correct chars from ASP.
Thanks
|