Metronic Turkish Chracter Problem
I have prblem with turkish character on metronic theme when i try to turkish get turkish characters from .js file characters automactically converted for exp(Å -> S,İ -> I, Ä ->g). How can i solve this problem
Replies (2)
Merhaba,
Starterkit/Program.cs
using System.Text.Unicode;
builder.Services.AddWebEncoders(o => {
o.TextEncoderSettings = new System.Text.Encodings.Web.TextEncoderSettings(UnicodeRanges.All);
}); Program.cs dosyasına ekledim. Ancak Türkçe karakter sorunu düzelmedi.
Projeyi Docker Container (Linux) üzerinden yayınlamaya çalıÅıyorum.
I added it to the Program.cs file. However, the Turkish character problem was not fixed.
I'm trying to publish the project via Docker Container (Linux).
Hi,
May I know what editor are you using? Can you try to put utf-8 encoding for your code in your editor? utf-8 is the recommended character encoding mode that works well for all languages. I would suggest trying to use
Regards