programming-examples/asp/Sessions_SQL/Server Variables.asp
2019-11-18 14:25:58 +01:00

23 lines
525 B
Plaintext

<html>
<head>
<title>Untitled</title>
</head>
<body>
<TABLE WIDTH="100%" BORDER="1" CELLSPACING="0" CELLPADDING="0">
<%
Dim strSV, intRowColor
For Each strSV In Request.ServerVariables
If intRowColor = 0 Then
Response.Write "<TR bgcolor=""#ddddfc"">"
intRowColor = 1
Else
Response.Write "<TR bgcolor=""#ffffff"">"
intRowColor = 0
End If
Response.Write "<TD> " & strSV & "=" & Request.ServerVariables(strSV) & "</TD></TR>"
Next
%>
</TABLE>
</body>
</html>