PDA

View Full Version : Web Request Source IP Addresses


Levi
03-05-2003, 09:56 AM
Is there a way to program my pages to get and save requesting source IPs with this web provider's service since I found the raw logs are not available?

Thanks for your time,
Levi

bruce
03-05-2003, 10:28 AM
The requesting IP address can be accessed using Request.ServerVariables("REMOTE_ADDR"). Works both in asp & asp.net

see this article

http://www.4guysfromrolla.com/webtech/092298-3.shtml


[b]quote:Originally posted by Levi

Is there a way to program my pages to get and save requesting source IPs with this web provider's service since I found the raw logs are not available?

Thanks for your time,
Levi
</blockquote id="quote"></font id="quote">

Levi
03-06-2003, 11:48 AM
Thanks, Bruce.

Levi