questhaven
Programmer
Hi there - I am having an issue with trying to read the LCID value from the Macintosh version of Internet Explorer. With IE for Windows this works fine:
<%
strAcceptLanguage = Request.ServerVariables("HTTP_ACCEPT_LANGUAGE"
Select Case LCase(strAcceptLanguage)
Case "en-us"
strLCID = 1033 ' English(United States)
End Select
Session.LCID = strLCID
%>
but for with IE for Macintosh I am getting an error message that says:
"Invalid LCID"
Does anyone know what could be causing this?
Thanks in advance!
<%
strAcceptLanguage = Request.ServerVariables("HTTP_ACCEPT_LANGUAGE"
Select Case LCase(strAcceptLanguage)
Case "en-us"
strLCID = 1033 ' English(United States)
End Select
Session.LCID = strLCID
%>
but for with IE for Macintosh I am getting an error message that says:
"Invalid LCID"
Does anyone know what could be causing this?
Thanks in advance!