ClassicASP 사용자 웹브라우저 언어설정 코드에 따라 다른 페이지로 이동하기
페이지 정보
본문
브라우저 언어설정코드 : https://www.happyjung.com/lecture/2684
방법.1
<%
User_Lang = request.ServerVariables("http_accept_language")
response.write User_Lang+"<br>"
if inStr(User_Lang, "ko") > 0 then
response.redirect "index.asp"
elseif inStr(User_Lang, "jp") > 0 then
response.redirect "/japan/index.asp"
else
response.redirect "/english/index.asp"
end if
%>
방법.2
<%
Select Case Left(Request.ServerVariables("HTTP_ACCEPT_LANGUAGE"), 2)
Case "ko"
Response.Redirect "/index.asp"
Case "ja"
Response.Redirect "/japan/index.asp"
Case "zh"
Response.Redirect "/china/index.asp"
Case Else
Response.Redirect "/english/index.asp"
End Select
%>
참고자료
https://www.happyjung.com/lecture/404
https://sir.kr/pb_tip/1114
댓글목록
등록된 댓글이 없습니다.