User-2059794046 posted
Hi All,
I have a aspx page which displays data from the database. I have an address which is displayed as
Münzhof Sü when I checked in actual database output in a console window I see
Münzhof Sü which is the expected data. So the data is coming proprely from my database but it is not properly displayed. I read that the default encoding used is utf-8 and it supports German characters. I explicitly added <globalization requestEncoding="utf-8"
responseEncoding="utf-8" fileEncoding="utf-8"/> in the webconfig and <META HTTP-EQUIV="content-type" CONTENT="text/html; charset=utf-8"> in the master page , it is still not working. At runtime when I right click and check the encoding for the page,
utf-8 is selected.
Any help and explanation for this weird behaviour will be greatly appreciated. I am using c# for the code behind.