Hi Bruce,
What would be the correct approach to allow multiple character sets to be stored and displayed correctly in a Nettalk Web application?
I have a table where I need to be able to allow different languages like Spanish, Arabic in text fields. The text fields are of type nvarchar.
I insert some data into the table as below:
insert into Fruits (GUID, enFruitName, esFruitName, arFruitName)
values('126091FF-8301-42', N'Banana',N'el plátano, la banana', N'موز')
After the insert, it displays correctly in Management Studio as below:
But in my Nettalk web application, the fields display incorrectly as below:
Then I edit the data in my web application as below:
But the data still shows incorrectly now both in the web application and Management Studio:
In WebServer settings,
Charset is set to 'utf-8'
Store Data As is set to utf-8
What am I doing wrong and how can I store and display different character sets correctly?
Thanks
&
Regards,
Ubaidullah Nubar.