Hi,
My name is Sheng Feng.
I had a webapplication which can store Chinese text (codepage = 936) into a Ms Access Database. It was running on IIS server on Windows 2000 (Dutch). It was working fine till I moved the application to windows XP (Dutch). Now the data can not be stored as "real" Chinese characters, but 'ó?í etc instead.
The Chinese text is retrieved from a form of another webpage.
code looks like this
<%Language="VBScript" Codepage=936%>
<%
name = request.form("p_name")
set cn=server.createobject("adodb.connection")
strConnectString="Driver={Microsoft Access Driver (*.mdb)};dbc=c:\test.mdb"
cn.open strConnectString
sqlText = "SELECT NAME FROM BOOK WHERE ID=" & id
set rs=server.createObject("adodb.recordset")
rs.open sqlText, restaurantDb, adOpenStatic, adCmdTable
rs("NAME")=name
rs.update
.............
%>
What is funny is that when I restarted windows xp, the first update is working fine. But when I try to update for the 2nd time the Chinexe characters looks like "'ó?í" again.