Per tutti coloro che hanno un sito web, al quale preferirebbero
"dirottare" le richieste della procedura del precedente post, propongo la creazione di una pagina
SHTML tipo la seguente:
For all those who have a website, which prefer to "hijack" the demands of the procedure of the previous post, I propose the creation of a page SHTML like the following:
Code:
.<html>
. <head>
. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
. <title>GET YOUR IP (shtml)</title>
. </head>
. <body>
. Your Public IP:
. <!--#echo var="REMOTE_ADDR"-->
. </body>
.</html>
(esempio/sample in SHTML)
A secondo della necessità si può optare anche per una pagina
ASP dove, anche in questo caso, una sola riga di codice (
VBScript) risolve l'indirizzo
IP:
Depending on the need can also opt for an ASP page where a single line of code (VBScript) resolves the IP address:
Code:
.<html>
. <head>
. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
. <title>GET YOUR IP (asp)</title>
. </head>
. <body>
. Your Public IP:
. <%
. Response.Write Request.ServerVariables("REMOTE_ADDR")
. %>
. </body>
.</html>
(esempio/sample in ASP)
Nel file compresso, che potete scaricare dal link sottostante, trovate alcune pagine web di esempio...
In the compressed file, downloadable from the link below, find some webpages sample...