Reading the HTTP Headers with Request.ServerVariables Home » ASP » The Request Object » HTTP Headers The ASP code for "HTTPHeaders.asp" <%LANGUAGE="VBSCRIPT">% <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Standard HTTP Headers</title> </head> <body> <%=Request.ServerVariables("HTTP_USER_AGENT")%> <BR> <%=Request.ServerVariables("HTTP_ACCEPT")%> <BR> <%=Request.ServerVariables("HTTP_HOST")%> <BR> <%=Request.ServerVariables("HTTP_CONNECTION")%> <BR> <%=Request.ServerVariables("HTTP_ACCEPT_LANGUAGE")%> </body> </html> Output of "HTTPHeaders.asp" Share on Facebook Share on Twitter Share on Google Plus RELATED POSTS How text box values can be accessed...Reading Form Values from an ASP Pag...Response.Redirect Method