Does responseEncoding set in globalization element in web.config file, work?
<configuration>
<system.web>
<globalization
fileEncoding="utf-8"
requestEncoding="utf-8"
responseEncoding=""
culture="en-US"
uiCulture="de-DE"
/>
</system.web>
</configuration>
Otherwise, use the base page and set the encoding there, but that works a lot.
source
share