give one ip, find out which contry
Answers were Sorted based on User's Feedback
Answer / sunil
You can use simple ASP script to lookup country code/name
from any ip addresses
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ranjita
hi sunil
can you give me the code for that or can you explain in detail
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sunil
ASP Script Usage and Sample - you may use the following
features independently
1. Create and destroy the component
' Create an instance of ActiveTarget object
Set ActiveObj = Server.CreateObject("ACTarget.IPGEO")
' Free the instance after use
Set ActiveObj=nothing
2. Get the client visitor's ip address
'Return the ip address of the current visitor
ClientIP = ActiveObj.ClientIP
3. Detect client visitor's country code
'Return the two letters iso country codelike us, uk, jp etc.
VisitorCountry= ActiveObj.ClientRegion
4. Detect client visitor's full country name
'Return full country name like United States, United Kingdom
etc.
VisitorFullCountry = ActiveObj.ClientFullRegion
5. Look up the country code from an ip address
'Custom IP address to two letters country code lookup
IP="150.48.244.170"
IPCountry = ActiveObj.Lookup(CStr(IP))
or
IPCountry = ActiveObj.Lookup("150.48.244.170")
6. Look up the country name from an ip address
'Custom IP address to full country name lookup
IP="150.48.244.170"
IPFullCountry=ActiveObj.FullLookUp(CStr(IP))
7. Resolve a host/domain name to ip address
IP=ActiveObj.DNSLookup("www.microsoft.com")
8. Convert country code to full country name
CountryName=ActiveObj.RegionCodeToName("CA")
9. Check the current status of the component
'It will output ActiveTarget DLL version, ip-country
database version,
' current status, last loaded time, self-test etc.
Response.Write ActiveObj.Version
10. Reload the database when updated
'Only when you get new version of ip-country database, then
use this method to load the new database without restarting
your server or IIS.
ActiveObj.ReloadLibrary
| Is This Answer Correct ? | 0 Yes | 0 No |
Is null valid for pointers to functions?
What are the different types of C instructions?
what is the difference between entry control and exit control statement?
12 Answers Darbari Lal DAV Model School,
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none
What is the stack in c?
What is mean by data types in c?
printf("%d",(printf("Hello")); What it returns?
define function
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
my name is nani i completed my b-tech in hyd now i want go for interveiw but i dont know the process of software field interveiws plz help me anyone how many rouds there n what rounds plz plz plz help me n where i can get these details
why arithmetic operation can’t be performed on a void pointer?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }