<html> <head> <title>Variables del servidor - Códigos asp, programacion asp, descargas asp, rutinas asp</title> </head> <p align="center"><b><font size="3">Variables del servidor</font></b></p> <br> <br> <body style="font-family: Arial; font-size: 11pt"> <table border=1> <%for each name in request.servervariables%> <tr><td> <%=name%> </td><td> <%=request.servervariables(name)%> </td></tr> <%next%> </table> </body> </html>