| |
|
|
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:Accept: application/xhtml+xml,text/html;q=0.9,text/plain;
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_HOST:www.earthskater.net
HTTP_USER_AGENT:CCBot/1.0 (+http://www.commoncrawl.org/bot.html)
|
|
ALL_RAW |
Cache-Control: no-cache
Connection: close
Pragma: no-cache
Accept: Accept: application/xhtml+xml,text/html;q=0.9,text/plain;
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Accept-Encoding: gzip
Accept-Language: en-us,en;q=0.5
Host: www.earthskater.net
User-Agent: CCBot/1.0 (+http://www.commoncrawl.org/bot.html)
|
|
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 |
9826
|
|
INSTANCE_META_PATH |
(hidden by server)
|
|
LOCAL_ADDR |
(hidden by server)
|
|
LOGON_USER |
|
|
PATH_INFO |
/devzone/aspservervariables.asp
|
|
PATH_TRANSLATED |
(hidden by server)
|
|
QUERY_STRING |
|
|
REMOTE_ADDR |
38.103.63.18
|
|
REMOTE_HOST |
38.103.63.18
|
|
REMOTE_USER |
|
|
REQUEST_METHOD |
GET
|
|
SCRIPT_NAME |
/devzone/aspservervariables.asp
|
|
SERVER_NAME |
www.earthskater.net
|
|
SERVER_PORT |
80
|
|
SERVER_PORT_SECURE |
0
|
|
SERVER_PROTOCOL |
HTTP/1.1
|
|
SERVER_SOFTWARE |
(hidden by server)
|
|
URL |
/devzone/aspservervariables.asp
|
|
HTTP_CACHE_CONTROL |
no-cache
|
|
HTTP_CONNECTION |
close
|
|
HTTP_PRAGMA |
no-cache
|
|
HTTP_ACCEPT |
Accept: application/xhtml+xml,text/html;q=0.9,text/plain;
|
|
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_HOST |
www.earthskater.net
|
|
HTTP_USER_AGENT |
CCBot/1.0 (+http://www.commoncrawl.org/bot.html)
|
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>
|
|