In my database there is a field which stores Arabic names. Field type is VARCHAR
.
When I run SELECT
statement in SQL Editor to get records then it shows me value ãÇ äÇá which is actually ما نال
Problem is when I am displaying this value in ASP.Net, it is displayed as ÒÃ õÃß. I have changed page encoding to UTF-8 but no luck. How do I display Arabic names properly in ASP.Net that are stored in VARCHAR
field? Please note field type cannot be changed in database.
Found the solution. Use
in Sybase connection string in web.config. Example given below.