관리 메뉴

웹개발자의 기지개

[ASP] PC 인지 모바일인지 체크하기 본문

ASP

[ASP] PC 인지 모바일인지 체크하기

http://portfolio.wonpaper.net 2024. 1. 13. 11:12

asp 소스 상으로 pc 와 모바일을 체킹하는 소스이다.

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
<%
mob = "iPod|iPhone|Android|BlackBerry|SymbianOS|SCH-M\d+|Opera Mini|Windows CE|Nokia|SonyEricsson|webOS|PalmOS"
splitmo = split(mob,"|")
agent = Request.ServerVariables("HTTP_USER_AGENT")
For i = 0 to UBound(splitmo )
    If InStr(agent,splitmo (i)) > 0 Then
        Response.Redirect("/모바일.asp")
    else
        Response.Redirect("/웹.asp")
        Exit for
    End If
Next
%>
cs

 

참고 : https://m.blog.naver.com/hosicee22/220237901793

 

 

Comments