ANY WAY FOR FP2002 TO DETECT THE IP ADDRESSES OF VISITORS TO MY WEBSITE??

M

Marcello do Guzman

I was wondering if it is possible to include either VBA or Javascript
code to detect the IP addresses of visitors to my website?

Thanks in advance.

Marcello do Guzman

Email: (e-mail address removed)
 
S

Stefan B Rusynko

Html and the web does not support VBA

Check w/ your host for their log files



| I was wondering if it is possible to include either VBA or Javascript
| code to detect the IP addresses of visitors to my website?
|
| Thanks in advance.
|
| Marcello do Guzman
|
| Email: (e-mail address removed)
 
M

Mike Mueller

ASP version

strIpAddress = Request.ServerVariables("Remote_Addr")

Mike


message : I was wondering if it is possible to include either VBA or
Javascript
: code to detect the IP addresses of visitors to my website?
:
: Thanks in advance.
:
: Marcello do Guzman
:
: Email: (e-mail address removed)
 
K

Kevin Spencer

It is important to note, however, that in most cases, the client computer's
public IP address will change frequently.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
V

\\~Virus Guard~/

Hi, I was reading this and,

I was wondering how to insert that into my webpage.

/~~DaN~~\
 
S

Stefan B Rusynko

No
- check w/ your host for web server logs
which will only record the users ISP URL (aol, earthlink , etc), not the actual user's ID




| Hi, I was reading this and,
|
| I was wondering how to insert that into my webpage.
|
| /~~DaN~~\
| | > It is important to note, however, that in most cases, the client
| computer's
| > public IP address will change frequently.
| >
| > --
| > HTH,
| > Kevin Spencer
| > .Net Developer
| > Microsoft MVP
| > Big things are made up
| > of lots of little things.
| >
| > | > > ASP version
| > >
| > > strIpAddress = Request.ServerVariables("Remote_Addr")
| > >
| > > Mike
| > >
| > >
| > > message | > > : I was wondering if it is possible to include either VBA or
| > > Javascript
| > > : code to detect the IP addresses of visitors to my website?
| > > :
| > > : Thanks in advance.
| > > :
| > > : Marcello do Guzman
| > > :
| > > : Email: (e-mail address removed)
| > >
| > >
| >
| >
|
|
 
S

Steve Easton

Depends upon the server OS
On an Apache/UNIX this will return the IP address <!--#echo var="REMOTE_ADDR" -->
and this will return the user agent <!--#echo var="HTTP_USER_AGENT" -->

These simply need to be placed in the area of the page in code view where you want the
info displayed.
Also, the page will need to be saved with the shmtl file extension ( smart html )

Here's an example. Note the echo scripts do not show in view source for the page:
http://www.95isalive.com/tricks/ipadd.shtml

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 

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

Top