ASP에서 maxmind GEOIP 사용하기
Posted at 2012. 11. 9. 10:14 | Posted in 프로그래밍/ASP, JavascriptDim iparr : iparr = Split(IPADDRESS,".")
caltot = (iparr(0)*16777216)+(iparr(1)*65536)+(iparr(2)*256)+iparr(3)
SQL = "SELECT top 1 CountryCode, CountryNumber FROM GEOIP with(nolock) WHERE StartNumber<=" & caltot & " and EndNumber>=" & caltot
set rs = ConDB.Execute(SQL)
if not rs.EOF Then
CountryCode = rs("CountryCode")
CountryNumber = rs("CountryNumber")
Else
CountryCode = ""
CountryNumber = ""
End If
MAX Mind 무료 다운로드 http://dev.maxmind.com/geoip/geolite
'프로그래밍 > ASP, Javascript' 카테고리의 다른 글
jquery.load()로 불러온 객체가 submit 하면 인식을 못할때 (0) | 2015.01.28 |
---|---|
자바스크립트로 팝업을 띄었을때 Referer 확인하는 방법 (0) | 2013.08.22 |
ASP에서 엑셀2007 이상의 파일 사용하기 (0) | 2012.07.25 |
이미지 업로드 전 미리보기 (0) | 2012.06.07 |
체크박스 존재여부 확인 및 체크갯수 확인 (0) | 2011.12.08 |