Hi buddies,
Just like
www.google.com, I'd like to detect the client's system locale and then redirect to pages in differect languages accordingly.
But what I get with the following codes is not what I really want, it is just the system language! Please help buddies, thanks a lot.
QUOTATION
<%
Dim SYS_LOCALE
SYS_LOCALE=Request.ServerVariables("HTTP_ACCEPT_LA NGUAGE")
Select Case SYS_LOCALE
Case "en-us":Response.Redirect "http://www.abcd.com/en/index.asp"
Case else: Response.Redirect "http://www.abcd.com/ch/index.asp"
End select
%>
END OF QUOTATION
Yours truly