VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



List all the server variables - VBScript

by www.coderhq.com (5 Submissions)
Category: Active Server Pages
Compatability: ASP (Active Server Pages)
Difficulty: Unknown Difficulty
Originally Published: Tue 3rd September 2002
Date Added: Mon 8th February 2021
Rating: (1 Votes)

List all the server variables - VBScript

Rate List all the server variables - VBScript



<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>

Download this snippet    Add to My Saved Code

List all the server variables - VBScript Comments

No comments have been posted about List all the server variables - VBScript. Why not be the first to post a comment about List all the server variables - VBScript.

Post your comment

Subject:
Message:
0/1000 characters