ASP uses Request. ServerVariables to obtain the real IP address of the client

Source: Internet
Author: User
Tags servervariables

As we all know, using Request in ASP. serverVariables ("REMOTE_ADDR") can obtain the client's IP address. However, if the client uses a proxy server for access, the obtained IP address is the proxy server's IP address rather than the real client IP address. But how can I obtain the IP address of the client server? The following is a small Editor of the customer's house.

In fact, to obtain the real IP address of the client through the proxy server, you need to use Request. ServerVariables ("HTTP_X_FORWARDED_FOR") to read.

However, not every proxy server can use Request. serverVariables ("HTTP_X_FORWARDED_FOR") to read the real IP address of the client, some of which are still the IP address of the proxy server.

Note that if the client is not accessed through the proxy server, the value obtained using Request. ServerVariables ("HTTP_X_FORWARDED_FOR") will be null. Therefore, if you want to use this method in the program, you can do this:

......

Userip = Request. ServerVariables ("HTTP_X_FORWARDED_FOR ")

If userip = "" Then userip = Request. ServerVariables ("REMOTE_ADDR ")

......

That is, if the client uses the proxy server, the value of HTTP_X_FORWARDED_FOR is obtained. If the client does not pass the proxy server, the value of REMOTE_ADDR is obtained. Is this method very practical? Add it to favorites! It may be used.

You still like the following:

ASP obtain statements of different formats for the current time

Install SQL2005 in Win2008 to create an ASP. NET Website

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.