Mostrar todas las variables del Servidor
Un script muy corto y muy bueno para ver todas las variables del servidor. Fijense como trabaja el Script.Esto lo podría almacenar en una BD y asi tener datos de cada usuario que entra a su sitio.
<TABLE BORDER="1" WIDTH="90%" BORDERCOLOR="#304B58">
<TR>
<TD valign="top"> <B>Variable</B></TD>
<TD valign="top"><B>Value</B></TD>
</TR>
<% For Each variable in Request.ServerVariables%>
<TR>
<TD><FONT FACE="Times New Roman" SIZE="1"><%= variable %></FONT></TD>
<TD><FONT FACE="Times New Roman" SIZE="1">
<%
If Request.ServerVariables(variable) = "" Then
Response.Write " "
Else
Response.Write Request.ServerVariables(variable)
End If
%>
</FONT></TD>
</TR>
<% Next %>
</TABLE>
No hay comentarios:
Publicar un comentario
Gracias por comentar en mi blog. Saludos.