Lukas Šalkauskas
Lukas Šalkauskas

Reputation: 14361

How to display Chinese characters in ListView?

maybe anyone have ideas of how to display Chinese characters in the ListView control ?

Upvotes: 1

Views: 1770

Answers (1)

Joe Ratzer
Joe Ratzer

Reputation: 18549

Ensure you have Chinese character capabilities on your actual machine and browser:

http://www.jp41.com/internet-explorer/chinese/

If you've done that and it's still a problem, perhaps you are getting data from a database that has been input as Chinese, but the data type on the relevant column isn't Unicode. In which case make change the data type to for example, nvarchar.

Upvotes: 2

Related Questions