
Getting ip address via VBScript
You can use Request.Servervariables("LOCAL_ADDR")
This will give you the local IP address
so in index.htm, you can write <%=Request.Servervariables("LOCAL_ADDR")%>
Quote:
> I am trying to write a script that will grab my local ip address and place
> that in 'index.htm' in a redirect string. Any ideas.
> Thanks