ASP

ASP Variables Strings Form Arrays 2D Array Loop IF Cookies Dates Dictionaries SQL Numbers Files JSON Database Regular Expression ExecuteGlobal Recordset ServerVariables Bugs ADO AJAX XML Chilkat
O O

Weather Controls

Time Of Day
Rain
Wind Speed
Wind Direction
Clouds

ASP : ServerVariables

2019-10-04

Current Web Directory

/tools/griffin/demo/display.asp

Request.ServerVariables("URL")
Request.ServerVariables("SCRIPT_NAME")

URL parameters

primaryid=36

Request.ServerVariables("QUERY_STRING")

All of them

for each x in Request.ServerVariables
  response.write(x & ":" & Request.ServerVariables(x) & "<br>")
next