Forum Moderators: open
โปรแกรมบัญชีสำเร็จรูป/Software (field type nvarchar)
When reading the record in normal ASP I get the same characters as in the database and by setting the encoding for the page to Thai no problem, it works!
In ASP.Net I get <all questionmarks>/Software'
Had simular problem with static text but solved this by changing the web.config file the <globalization/> setting:
<globalization
fileEncoding="windows-874"
requestEncoding="windows-874"
responseEncoding="windows-874"/>
So now I have a Thai Web page with normal content in Thai except for what I read form the database!
Anyone that can help with this?
I made some progress by using in web.options the following:
<globalization
fileEncoding="windows-874"
requestEncoding="UTF-8"
responseEncoding="UTF-8"/>
This will solves the question marks problem and now I get the same characters as in the database but still no Thai!