INSERT INTO dbo.YourTable(NVarcharColumn)
VALUES(N'Some Chinese text here')
to retrieve it into asp classic page:
Response.ContentType = "text/html"
Response.AddHeader "Content-Type", "text/html;charset=UTF-8"
Response.CodePage = 65001
Response.CharSet = "UTF-8"
0 comments:
Post a Comment