Dmitrii
Dmitrii

Reputation: 1257

How to add multi-language support in Silverlight?

I obtain data written in several languages from database and show it in silverlight datagrid, but all the non-latin symbols (e.g. Russian, French, German) is displayed as '?'. How can i resolve this issue?

Thanks.

Upvotes: 0

Views: 827

Answers (1)

Samvel Siradeghyan
Samvel Siradeghyan

Reputation: 3593

Looks like you store your data in database as 'text' or 'varchar'. If that is true than change type to 'ntext' or 'nvarchar'.

Upvotes: 1

Related Questions