| |
ASP built in server variables are for use on any Windows server running IIS and Microsoft Active Server Pages.
| Variable Name |
Value |
|
ALL_HTTP |
HTTP_CACHE_CONTROL:no-cache
HTTP_CONNECTION:close
HTTP_PRAGMA:no-cache
HTTP_ACCEPT:text/html,application/xhtml+xml,text/xml;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
HTTP_ACCEPT_CHARSET:ISO-8859-1,utf-8;q=0.7,*;q=0.7
HTTP_ACCEPT_ENCODING:gzip
HTTP_ACCEPT_LANGUAGE:en-us,en;q=0.5
HTTP_COOKIE:ASPSESSIONIDSSQTRSCC=LMBAGMHCKHFMPIKLCFHFCDIN
HTTP_HOST:developer.earthskater.net
HTTP_IF_MODIFIED_SINCE:Sat, 25 Sep 2010 02:21:18 GMT
HTTP_USER_AGENT:CCBot/1.0 (+http://www.commoncrawl.org/bot.html)
HTTP_X_CC_ID:ccc01-01
|
|
ALL_RAW |
Cache-Control: no-cache
Connection: close
Pragma: no-cache
Accept: text/html,application/xhtml+xml,text/xml;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Accept-Encoding: gzip
Accept-Language: en-us,en;q=0.5
Cookie: ASPSESSIONIDSSQTRSCC=LMBAGMHCKHFMPIKLCFHFCDIN
Host: developer.earthskater.net
If-Modified-Since: Sat, 25 Sep 2010 02:21:18 GMT
User-Agent: CCBot/1.0 (+http://www.commoncrawl.org/bot.html)
x-cc-id: ccc01-01
|
|
APPL_MD_PATH |
(hidden by server)
|
|
APPL_PHYSICAL_PATH |
(hidden by server)
|
|
AUTH_PASSWORD |
|
|
AUTH_TYPE |
|
|
AUTH_USER |
|
|
CERT_COOKIE |
|
|
CERT_FLAGS |
|
|
CERT_ISSUER |
|
|
CERT_KEYSIZE |
|
|
CERT_SECRETKEYSIZE |
|
|
CERT_SERIALNUMBER |
|
|
CERT_SERVER_ISSUER |
|
|
CERT_SERVER_SUBJECT |
|
|
CERT_SUBJECT |
|
|
CONTENT_LENGTH |
0
|
|
CONTENT_TYPE |
|
|
GATEWAY_INTERFACE |
CGI/1.1
|
|
HTTPS |
off
|
|
HTTPS_KEYSIZE |
|
|
HTTPS_SECRETKEYSIZE |
|
|
HTTPS_SERVER_ISSUER |
|
|
HTTPS_SERVER_SUBJECT |
|
|
INSTANCE_ID |
4043
|
|
INSTANCE_META_PATH |
(hidden by server)
|
|
LOCAL_ADDR |
(hidden by server)
|
|
LOGON_USER |
|
|
PATH_INFO |
/aspservervariables.asp
|
|
PATH_TRANSLATED |
(hidden by server)
|
|
QUERY_STRING |
|
|
REMOTE_ADDR |
38.107.179.209
|
|
REMOTE_HOST |
38.107.179.209
|
|
REMOTE_USER |
|
|
REQUEST_METHOD |
GET
|
|
SCRIPT_NAME |
/aspservervariables.asp
|
|
SERVER_NAME |
developer.earthskater.net
|
|
SERVER_PORT |
80
|
|
SERVER_PORT_SECURE |
0
|
|
SERVER_PROTOCOL |
HTTP/1.1
|
|
SERVER_SOFTWARE |
(hidden by server)
|
|
URL |
/aspservervariables.asp
|
|
HTTP_CACHE_CONTROL |
no-cache
|
|
HTTP_CONNECTION |
close
|
|
HTTP_PRAGMA |
no-cache
|
|
HTTP_ACCEPT |
text/html,application/xhtml+xml,text/xml;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
|
|
HTTP_ACCEPT_CHARSET |
ISO-8859-1,utf-8;q=0.7,*;q=0.7
|
|
HTTP_ACCEPT_ENCODING |
gzip
|
|
HTTP_ACCEPT_LANGUAGE |
en-us,en;q=0.5
|
|
HTTP_COOKIE |
ASPSESSIONIDSSQTRSCC=LMBAGMHCKHFMPIKLCFHFCDIN
|
|
HTTP_HOST |
developer.earthskater.net
|
|
HTTP_IF_MODIFIED_SINCE |
Sat, 25 Sep 2010 02:21:18 GMT
|
|
HTTP_USER_AGENT |
CCBot/1.0 (+http://www.commoncrawl.org/bot.html)
|
|
HTTP_X_CC_ID |
ccc01-01
|
Here's the CODE to generate the list made above:
<div align="left">
<table border="0" cellpadding="0" cellspacing="0" width="750">
<tr>
<td valign="top" align="left" width="150"><font face="Arial" size="2"
color="#FF0000"><b>Variable Name</b></font></td>
<td valign="top" align="left" width="600"><font face="Arial"
size="2"><b>Value</font></b></td>
</tr>
<%
for each name in request.servervariables
%>
<tr>
<td valign="top" align="left" width="150">
<font face="Arial" size="1" color="#FF0000">
<%= name %></font></td>
<td valign="top" align="left" width="600">
<font face="Arial" size="1"><%= request.servervariables(name) %></font></td>
</tr>
<%
Next
%>
</table>
</div>
|
  |