List all the server variables - VBScript
List all the server variables - VBScript
Rate List all the server variables - VBScript
(3(3 Vote))
<head>
<title>Server Variables</title>
<style type="text/css">
td { font: 7pt Verdana; }
</style>
</head>
<body>
<table border=1 width="100%">
<tr><td><b>Variable</b></td><td><b>Value</b></td></tr>
<%
For Each Item In Request.ServerVariables
Response.Write "<tr><td>" & Item & "</td><td>" & Request.ServerVariables(Item) & "</td></tr>" & vbcrlf
Next
%>
</table>
</body>
</html>
List all the server variables - VBScript Comments
No comments yet — be the first to post one!
Post a Comment