I am in the process of βupgradingβ a classic asp application using an Access 2000 database.
I rewrote the database on SQL Server 2008r2 and changed all the fields to use the new nicar nchar, nvarchar, ntext, but the imported old data. I also switched to IIS 7 from IIS 6
Classic asp collects and writes data using UTF-8.
Now the application correctly displays OLD data on web pages, but as a son when I touch it, i.e. UPDATE or INSERT, data becomes corrupted. I assume that I need to somehow convert the UTF-8 data from classic asp to UCS-2 before I write the data to the SQL server.
But how?
NOTE. It seems that the sql server automatically converted utf-8 data to a convenient format when it imported data from access.
sql-server utf-8 asp-classic ucs2
Chris chadwick
source share