Algunas de las rutinas que en algún momento me han sido de gran utilidad ... ahí os las dejo ...
OBTENER IP DE LA CONEXIÓN DEL CLIENTE
Dim ClientIP, Forwaded, RealIP
RealIP = ""
ClientIP = Request.ServerVariables("REMOTE_ADDR")
If ClientIP <> "" Then
RealIP = ClientIP
Else
'El usuario está accediendo a través de un Proxy.
Forwaded = Request.ServerVariables("HTTP_X-Forwarded-For")
If Forwaded <> "" Then RealIP = Forwaded
End If
POSICIONAR SCROLL AL FINAL DE UN TEXTBOX (multiline)
Textbox1.SelectionStart = Textbox1.TextLength
Textbox1.ScrollToCaret()
Suscribirse a:
Entradas (Atom)