russian text
i'm trying make web page asp/vbscript gets russian text
a mysql database , puts onto webpage, ado calls
return question marks there should russian text.
i have used server.codepage=65001 , response.charset = "utf-8"
no avail.
could pleae give advice.
thanks
dave
a mysql database , puts onto webpage, ado calls
return question marks there should russian text.
i have used server.codepage=65001 , response.charset = "utf-8"
no avail.
could pleae give advice.
thanks
dave
hi,
maybe helps, although it´s how solved problem php:
i once had develop russian website displaying contents mysql well, , had same issue:
1. setting page´s charset right (<meta http-equiv="content-type" content="text/html; charset=utf-8">) 1 thing, didn´t getting rid of ???
2. additionally wrote php function
function russki ($string) {
echo htmlspecialchars($string, ent_compat, "utf-8"); // render mysql contents ent_compat , utf-8
}
and succeeded displaying recordset contents applying function it:.
russki($queryname->fields('fieldname')
"htmlspecialchars" , "ent_compat" of course native php functions, else have tell if similar available on asp/vbscript
maybe helps, although it´s how solved problem php:
i once had develop russian website displaying contents mysql well, , had same issue:
1. setting page´s charset right (<meta http-equiv="content-type" content="text/html; charset=utf-8">) 1 thing, didn´t getting rid of ???
2. additionally wrote php function
function russki ($string) {
echo htmlspecialchars($string, ent_compat, "utf-8"); // render mysql contents ent_compat , utf-8
}
and succeeded displaying recordset contents applying function it:.
russki($queryname->fields('fieldname')
"htmlspecialchars" , "ent_compat" of course native php functions, else have tell if similar available on asp/vbscript
More discussions in Dreamweaver support forum
adobe
Comments
Post a Comment