I pass "Malmö" as the Request.QueryString parameter to the page. However, the code sees it as "Malm", which means that string comparisons are not performed. All globalization options are set to UTF-8 in web.config. Did I miss something?
Edit: the request looks like this: http: // localhost / PageName /? CourseKommun = Malm% F6
%F6is not a URL encoding for ö , so you do not see ö .The correct URL encoding will be ( see ). %C3%B6
%F6
%C3%B6
:
/?courseKommun=Malmö
/?courseKommun=Malm%C3%B6
Source: https://habr.com/ru/post/1747377/More articles:At what point should I abandon the Variable table for the Temp table? - sql.NET: How to display a string in HTML format? - .netПочему я не могу добавить свойство Orientation в Style Setter в WPF - c#WPF trigger when property and data value is true - c #Disable holiday list in jQuery date picker - jqueryWhy are .NET 4 classes not covariant? - .netNSBundle загружает NSViewController - objective-cAES / Rijndael Test Vectors: what is the fill mode? - aesGlobalization for GetSystemTimeZones () - c #Removing from ManyToMany using IndexColumn - javaAll Articles