
To: ASP developer, webmaster, web technician etc.

Recommend another Jufsoft product: ActiveTarget

For more infomation:
http://www.jufsoft.com/activetarget/


ActiveTarget - ASP Component
===============================
IP to Country solution For ASP
 

What's ActiveTarget
===================
ActiveTarget is an active server component(ActiveX DLL) that allows you easily and real-time lookup country by IP addresses and target your internet visitors geographically.

Where is ActiveTarget to be Used 
================================
1.Quickly and authentically Target your internet visitors.
2.Automatically target advertising by country. 
3.Filter non-valuable traffic and low your host bandwidth cost
4.Provide visitors dynamic content or automatically select language
5.Provide visitors automatically select the geographically closest mirror. 
6.Analyze and determine your website traffic 
7.Detect credit card fraud or fake registration


How to Use ActiveTarget
=======================

Demo Script

<%
   Set ActiveObj = Server.CreateObject("ACTarget.IPGEO") 
   VisitorCountry=ActiveObj.ClientRegion
   Set ActiveObj = nothing
%>

   VisitorCountry will be filled with the 2 letters ISO country code for the coming client

Manual Query
<%
   Set ActiveObj = Server.CreateObject("ACTarget.IPGEO") 

   CountryName = ActiveObj.LookUP("205.188.145.215")       'it will return "US"
   CountryName = ActiveObj.LookUP("212.67.202.241")        'it will return "UK"
   CountryName = ActiveObj.LookUP("150.48.244.170")        'it will return "JP"
   CountryName = ActiveObj.LookUP("202.108.35.210")        'it will return "CN"
   CountryName = ActiveObj.FullLookUP("205.188.145.215")   'it will return "United States" (Full Country Name)
   CountryName = ActiveObj.FullLookUP("150.48.244.170")    'it will return "Japan" (Full Country Name)

   Set ActiveObj = nothing
%>

For more infomation:
http://www.jufsoft.com/activetarget/

