System TimeZone Display in English Text

Viewed 1099

The following code hosted in a System where the OS language is Japanese and I am getting the timezone's display in Japanese language. I set the Globalization setting in web.config to English but no luck. Is there any way to get the display in English text.

<select id="timezone" name="timezone">
    @foreach (var timeZone in TimeZoneInfo.GetSystemTimeZones()) {
        <option value="@timeZone.Id">@timeZone.DisplayName</option>
    }
</select>

Screenshot of the User Interface

enter image description here

2 Answers
Related