Can we find out IP address?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi, guys,

Do we have a .net function to find out what is the IP address of IIS server?

Thanks.
 
If you look for the application host, you can use

Request.Url.Host

If you look for requester's IP, use

Request.UserHostAddress (if the request comes through a proxy server, you
might need Request.ServerVariables["HTTP_X_FORWARDED_FOR"])

HTH

Elton Wang
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top