Honestly, I don't know a better way to do this.
You can create an extension method, but this may be redundant:
public static class Extensions
{
public static string GetUICultureCode(this System.Web.UI.Page page)
{
return System.Globalization.CultureInfo.CurrentUICulture.TwoLetterISOLanguageName;
}
}
this.GetUICultureCode()