Thank you for the reply.
We have a website and on the site there is a Contact Us form. The visitor can type their information into the form and click submit to email the form to us without having to use their own email account to send the message.
On the form, we need to have some coding that will send us the visitors information, such as their IP address.
This is what I had added to the form earlier, but it didn't send me any information:
<%
response.write (""&HTTP_USER_AGENT&": "&Request.ServerVariables(HTTP_USER_AGENT)&"<b r/>")
response.write (""&REMOTE_ADDR&": "&Request.ServerVariables(REMOTE_ADDR)&"<br/>")
response.write (""&REMOTE_HOST&": "&Request.ServerVariables(REMOTE_HOST)&"<br/>")
%>
On our last site we had set up the code within the html of the page like this:
<input type="hidden" name="env_report" VALUE="REMOTE_HOST,REMOTE_ADDR,HTTP_USER_AGENT">
and it worked fine.
This is a different system, and I can't figure out how to set it up.
I was hoping maybe someone knew something I didn't. Someone told me I should write a Javascript to pull the information from the visitors, but I'm lost with
JS.