Little Egypt ASP
Information Pit
The Active Server perceives the following
server variables for this transaction.
<% for each key in Request.ServerVariables %>
<% val = Request.ServerVariables(key) %>
<% if ((left(key,4) = "HTTP") and (val <> "")) then %>
| <% =key %>
|
<% =val & " "%>
|
<% end if %>
<% next %>
<% for each key in Request.ServerVariables %>
<% val = Request.ServerVariables(key) %>
<% if ((left(key,3) <> "ALL") and _ %>
<% (left(key,4) <> "HTTP") and _ %>
<% (val <> "")) then %>
| <% =key %>
|
<% =val & " "%>
|
<% end if %>
<% next %>
<% for each key in Request.ServerVariables %>
<% val = Request.ServerVariables(key) %>
<% if (left(key,3) = "ALL") then %>
| <% =key %>
|
<% =val & " "%>
|
<% end if %>
<% next %>
<% for each key in Request.ServerVariables %>
<% val = Request.ServerVariables(key) %>
<% if ((left(key,3) <> "ALL") and (val = "")) then %>
| <% =key %>
|
<% =val & " "%>
|
<% end if %>
<% next %>