<div style="font-size:1.1em;color:#990000;">
<div><b>IP address of the remote host making the request:</b>
<%Response.Write(Request.ServerVariables("REMOTE_ADDR"))%></div>
<div><b>Method used to make the request:</b>
<%Response.Write(Request.ServerVariables("REQUEST_METHOD"))%></div>
<div><b>The server's domain name:</b>
<%Response.Write(Request.ServerVariables("server_name"))%></div>
<div><b>The server's port:</b>
<%Response.Write(Request.ServerVariables("server_port"))%></div>
<div><b>The server's software:</b>
<%Response.Write(Request.ServerVariables("server_software"))%></div>
<div><b>Name of the host making the request:</b>
<%Response.Write(Request.ServerVariables("REMOTE_HOST"))%></div>
<div><b>All headers in raw form:</b>
<%Response.Write(Request.ServerVariables("ALL_RAW"))%></div>
<div><b>Name and revision of the request information protocol:</b>
<%Response.Write(Request.ServerVariables("server_protocol"))%></div>
</div>