Reputation: 14361
maybe anyone have ideas of how to display Chinese characters in the ListView control ?
Upvotes: 1
Views: 1770
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