Click here to Skip to main content
15,906,816 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi'
I have developed a website in ASP.NET
In which I am performing some Task
According to the IP address of the system
Where the site is Running.
Its working Fine When I am Running the Site from Local Host.
But when I am browsing the Site from web server end.
I am not getting the Correct IP address of the System where
it is getting browsed.
i am using folowing code to fetch the Ip Address of the System
strHostName = System.Net.Dns.GetHostName()
strIPAddress = System.Net.Dns.GetHostEntry(strHostName).AddressList(0).ToString()

is there any other method to find the IP address of System,
please Assist
Posted

1 solution

Try this


StrIPAdd = Request.ServerVariables("REMOTE_ADDR") 
 
Share this answer
 
Comments
Karwa_Vivek 29-Mar-13 6:24am    
thanks

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