Nessun risultato. Prova con un altro termine.
Guide
Notizie
Software
Tutorial

IP del visitatore

Grazie al seguente script, è possibile mostrare l'indirizzo IP del visitatore.

<%@ Page language="vb"%>
<script runat="server">
Sub page_load( obj As object, e As EventArgs )
indirizzo.text=request.servervariables("REMOTE_ADDR")
End sub
</script>
<asp:label id="indirizzo" value="" runat="server" />

Grazie al seguente script, è possibile mostrare l'indirizzo IP del visitatore.

<%@ Page language="vb"%>
<script runat="server">
Sub page_load( obj As object, e As EventArgs )
indirizzo.text=request.servervariables("REMOTE_ADDR")
End sub
</script>
<asp:label id="indirizzo" value="" runat="server" />

Link copiato negli appunti

Grazie al seguente script, è possibile mostrare l'indirizzo IP del visitatore.

<%@ Page language="vb"%>

<script runat="server">

Sub page_load( obj As object, e As EventArgs )

indirizzo.text=request.servervariables("REMOTE_ADDR")

End sub

</script>

<asp:label id="indirizzo" value="" runat="server" />