La Coleccion ServerVariables |
Post Reply |
Author | |
Programador
Expert@ Joined: 09 Mayo 2009 Location: San Pedro Alc. Status: Offline Points: 54 |
Post Options
Thanks(0)
Posted: 09 Mayo 2009 at 4:34pm |
La coleccion ServerVariables nos da acceso a variables de entorno del servidor y del cliente. Esta colección contiene una gran cantidad de datos, algunos de ellos tan interesantes como la dirección IP del visitante, del servidor, el nombre del servidor, etc ServerVariables forma parte del objeto Request, por lo cual para consultar estas variables recurriremos a el. Ejecutando el siguiente codigo tendremos un listado de todos los valores de la colección. <html><body>
<table border=1> <%for each name in request.servervariables%> <tr><td> <%=name%> </td><td> <%=request.servervariables(name)%> </td></tr> <%next%> </table></body></html> |
|
Sponsored Links | |
Post Reply | |
Tweet |
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You can vote in polls in this forum |