Please clarrify. Request.UserHostAddress will give you the client IP address. Do you wish to somehow provide the server IP address?
If so try Request.ServerVariables("H
I want to collect machine ip address by using asp.net,I do not get any solution only I get is hostaddress but I want the ip number of my machine.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
127.0.0.1 is the address for local-host; the loop back address.
Communication with this address is identical to connection to a remote computer, but bypasses the LAN hardware. It's often used for design and development of network services (ie: websites, et cetera).
Basically, it means "your computer". This is what you will get when you are testing the project in debug mode.
Business Accounts
Answer for Membership
by: deanvanrooyenPosted on 2009-01-12 at 15:05:27ID: 23358502
asp.net 2.0
EMOTE_ADDR "];
t-of-Reque stServerVa riables.as px
Request.UserHostAddress;
or use server variables
Label1.Text = Request.ServerVariables["R
check out this for list of server variables
http://www.aspcode.net/Lis
hth