I have a situation.
I have a label in ASP.NET 2.0(C#). The label should display a dutch language text that is “Sähköpostiosoite”, I tried setting the Label.Text both from markup and code-behind but what I see in the browser response is “Sähköpostiosoite”.
Originally assigned string “Sähköpostiosoite” get replaced with “Sähköpostiosoite”. I have no idea why this happens can you please help me diagnose the problem ??
We found the problem.
The asp.net page is generated by our inhouse code-generator. We did not supply the encoding format while saving the file to disk. We rectified this by telling the code-gen to use UTF8 encoding while saving the file and it resolved the issue.