ASP 常用服务器变量检测

时间:2023-04-12 阅读:388 评论:0 作者:xirui

当前分辨率:<% =Request.ServerVariables("HTTP_UA_PIXELS")%><br>

可显示颜色:<%=Request.ServerVariables("HTTP_UA_COLOR")%><br>

服务器时间:<% =now %><br>

服务器CPU型号:<%=Request.ServerVariables("HTTP_UA_CPU")%><br>

路由端口:<%=Request.ServerVariables("REMOTE_PORT")%><br>

服务器http端口:<%=Request.ServerVariables("LOCAL_PORT")%><br>

传输协议:<%=Request.ServerVariables("SERVER_PROTOCOL")%><br>

服务器语言:<%=Request.ServerVariables("HTTP_ACCEPT_LANGUAGE")%><br>

访问者IP:<%=Request.ServerVariables("REMOTE_ADDR")%><br>

客户端浏览器版本及系统:<%=Request.ServerVariables("HTTP_USER_AGENT")%><br>

服务器可接受文件:<%=Request.ServerVariables("HTTP_ACCEPT")%><br>

WEB目录名称:<%=Request.ServerVariables("APPL_PHYSICAL_PATH")%><br>

Server地址:<%=Request.ServerVariables("SERVER_NAME")%><br>

当前WEB页位置:<%=Request.ServerVariables("PATH_TRANSLATED")%><br>

请求方式:<%=Request.ServerVariables("REQUEST_METHOD")%><br>

WEB服务器软件及版本信息:<%=Request.ServerVariables("SERVER_SOFTWARE")%><br>


本文链接: https://www.5240.net/?id=38 转载请注明出处!