Click here to Skip to main content
15,884,598 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi i am developing web application for finding INTERNET SERVICE PROVIDER for visitors.. who are visiting our web page ( For example, I need to get provider name like AIRTEL, BSNL, TATA PHOTON...) i tried some of the way but i cant get the solution.. anyone tel how to get the ISP for visitors..

thanks in advance

regards,
Sasikumar
Posted
Updated 1-Nov-10 6:09am
v2

You'll find the DNS name of the machine making the request using:

C#
var dnsName = Request.ServerVariables["REMOTE_HOST"];


That should give you the url of the machine making the request - they usually include the ISP's DNS suffix.
 
Share this answer
 
There is a very good link that will help you a lot, about tracking the visitors detail.

Have a look
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900