티스토리 뷰

'// 모바일 브라우저인가?
Function is_mobile()
	arr_Browser =  array("iPhone", "iPod", "IEMobile", "Mobile", "lgtelecom", "PPC", "BlackBerry", "SCH-", "SPH-", "LG-", "CANU", "IM-" ,"EV-","Nokia", "Mobi")
	For i = 0 To Ubound(arr_Browser)
		user_agent = Lcase(arr_Browser(i))
        '// preg_match()는 PHP 함수를 ASP 컨버젼한 개인 함수
		If preg_match(user_agent, Request.ServerVariables("HTTP_USER_AGENT")) then
			is_mobile = True
			Exit Function
		End If
	Next
	is_mobile = False
End Function

'웹프로그래밍 > ASP Classic' 카테고리의 다른 글

JSON Escape  (0) 2013.05.22
XML Escape/UnEscape  (0) 2013.05.22
Classic ASP SHA1 암호화  (0) 2013.05.22
Classic ASP UTF-8 파일 읽기, 쓰기  (0) 2013.05.22
Smarty 템플릿 엔진을 닮은 classic ASP 프레임웍 Dermis  (0) 2013.05.04
댓글