In ASP.NET webforms, when setting UICulture="en" in the @Page directive, a Response.Write(Page.UICulture) returns the string "English" instead of the two letter language code "en".
Is the the only way to return the two letter language name by using this?
CultureInfo.CurrentUICulture.TwoLetterISOLanguageName
Or is there a better / more elegant way?