How do I find the IP address using MS Access?

A

Ashwin

Hi All,

Can someone educate me on how to scan and retrieve the IP address of the
person who is filling out the Online form which straightly gets in to my
Access database in my web server. I have added a field in the table and had
set the right input mask and format for entering an IP address, however I
would like to know the chances of tracing the IP address automatically.

I would appreciate your help!

regards,
Ashwin
 
S

Stefan Hoffmann

hi,
Can someone educate me on how to scan and retrieve the IP address of the
person who is filling out the Online form which straightly gets in to my
Access database in my web server. I have added a field in the table and had
set the right input mask and format for entering an IP address, however I
would like to know the chances of tracing the IP address automatically.
This is not really an Access problem.

You're using ASP? Take a look at the Request object,
Request.ServerVariables("REMOTE_ADDR") should give you your wanted IP.


mfG
--> stefan <--
 
Top