View Single Post
  #4 (permalink)  
Old 05-10-2007, 05:41 PM
sunpost sunpost is offline
WebProWorld New Member
 

Join Date: May 2007
Posts: 21
sunpost RepRank 0
Default

You might find the script below useful. It will display all the server variables:
Code:
<%
    For Each sv in Request.ServerVariables
       Response.Write sv & " == " & Request.ServerVariables( sv ) & "
"
    Next
%>
__________________
Have a nice day
Reply With Quote