vote up 1 vote down star

I have been trying to figure this out but cannot find a reliable way to get a clients IP address when making a request to a page in asp.net that works with all servers.

flag

4 Answers

vote up 7 vote down

One method is to use Request object:

protected void Page_Load(object sender, EventArgs e)
{
    lbl1.Text = Request.UserHostAddress;
}
link|flag
vote up 4 vote down

This question has been asked before. Check these links out:-

HTH.

(vote to close this).

link|flag
vote up 2 vote down

Request.ServerVariables("REMOTE_ADDR")

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.