acchuuhere
Posts: 4
|
| Posted: 04/20/2006, 9:07 PM |
|
Hi Experts,
Thanks a million to CodeCharge that provided me a great solution for my web services.
I would appreciate if some one can help on this part as well:
My project is built such that the customer would enter his information for the required services through the online form with MS Access as the database integrated in this picture.
I would like to trace the IP address of each customer wish to participate in my service while he / she is entering the information. I wasn't able to find a place in the Help & support regarding this.
I understand that I need to have a field set in my MS Access Table for the IP address. How would I go about pulling the IP information using the form?
Please help!!
Regards,
Ashwin
|
 |
 |
Andy
|
| Posted: 04/22/2006, 8:38 AM |
|
' ------- Capture IP Address -------------------
dim IPAddress
IPAddress=Request.ServerVariables("REMOTE_ADDR")
' ------- Capture IP Address -------------------
|
|
|
 |
|