| 			| Server Side Variables | 									| Language: | Server Sided ASP - VBScript |  				| Author: | Jon Lokken |  				| Date: | 4-8-2005 |  |  		| 
 |  		| Description: | View Example |  		| This is used to display the request variables on an iis 		server with VBScript. |  
 <%@ LANGUAGE="VBScript" %><%
 ' Author: Jon Lokken 4.8.2005
 Dim temp
 For Each Item In Request.ServerVariables
 temp = Item & " : " & Request.ServerVariables(Item) & "<br>"
 Response.Write(temp)
 Next
 %>
 
 			| Disclaimer: |  		| Feel free to use this code I have written.  I only ask that you 		leave my name in the comments.  I take no responsibility for this 		code working, imply no warranty as to it's validity, and will not be 		held liable if you decide to try it.  I am only trying to help out 		others so they don't have to struggle with the same problems as me... |  |