T
T
TechNOIR2020-11-20 17:54:03
IIS
TechNOIR, 2020-11-20 17:54:03

IIS. Problems with Cyrillic display in ISAPI dll applications. How to fix?

Good afternoon.

An ISAPI Dll web application is deployed on IIS and Cyrillic is displayed as questions :(
Windows Server English.
Can I somehow fix this problem?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Vladimir Korotenko, 2020-11-20
@firedragon

First diagnosis.
In the browser, change the language if it is determined after the changes. For example windows-1251 then go and configure web.config
https://stackoverflow.com/questions/45198518/how-t...

<configuration>
    <system.web>
        <globalization 
           requestEncoding="utf-8"
           responseEncoding="utf-8"
        />
    </system.web>
</configuration>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question