Chapter 3 Code listing. Server Information
------------------
Server Name = <%= Request.ServerVariables("SERVER_NAME") %>
Server Protocol = <%= Request.ServerVariables("SERVER_PROTOCOL") %>
Server IP = <%= Request.ServerVariables("LOCAL_ADDR") %>
Server Port = <%= Request.ServerVariables("SERVER_PORT") %>
IIS Version = <%= Request.ServerVariables("SERVER_SOFTWARE") %>

Website Information
------------------
Application Physical Path = <%= Request.ServerVariables("APPL_PHYSICAL_PATH") %>
Application Path = <%= Request.ServerVariables("PATH_INFO") %>
Application Translated Path = <%= Request.ServerVariables("PATH_TRANSLATED") %>

Chapter 7 Code listing Client Information
------------------
Client Name = <%= Request.ServerVariables("REMOTE_HOST") %>
Client IP = <%= Request.ServerVariables("REMOTE_ADDR") %>
Client Port = <%= Request.ServerVariables("REMOTE_PORT") %>
Client Request = <%= Request.ServerVariables("REQUEST_METHOD") %>
*If not anonymous
Client User Type = <%= Request.ServerVariables("AUTH_TYPE") %>
Client User Name = <%= Request.ServerVariables("AUTH_USER") %>