Request.ServerVariables["Url"] 
返回服务器地址 Request.ServerVariables["Path_Info"]
客户端提供的路径信息 Request.ServerVariables["Appl_Physical_Path"]
与应用程序元数据库路径相应的物理路径 Request.ServerVariables["Path_Translated"]
通过由虚拟至物理的映射后得到的路径 Request.ServerVariables["Script_Name"]
执行脚本的名称 Request.ServerVariables["Query_String"]
查询字符串内容 Request.ServerVariables["Http_Referer"]
请求的字符串内容 Request.ServerVariables["Server_Port"]
接受请求的服务器端口号 Request.ServerVariables["Remote_Addr"]
发出请求的远程主机的IP地址 Request.ServerVariables["Remote_Host"]
发出请求的远程主机名称 Request.ServerVariables["Local_Addr"]
返回接受请求的服务器地址 Request.ServerVariables["Http_Host"]
返回服务器地址 Request.ServerVariables["Server_Name"]
服务器的主机名、DNS地址或IP地址 Request.ServerVariables["Request_Method"]
提出请求的方法比如GET、HEAD、POST等等 Request.ServerVariables["Server_Port_Secure"]
如果接受请求的服务器端口为安全端口时,则为1,否则为0 Request.ServerVariables["Server_Protocol"]
服务器使用的协议的名称和版本 Request.ServerVariables["Server_Software"]
应答请求并运行网关的服务器软件的名称和版本 Request.ServerVariables["All_Http"]
客户端发送的所有HTTP标头,前缀HTTP_ Request.ServerVariables["All_Raw"]
客户端发送的所有HTTP标头,其结果和客户端发送时一样,没有前缀HTTP_ Request.ServerVariables["Appl_MD_Path"]
应用程序的元数据库路径 Request.ServerVariables["Content_Length"]
客户端发出内容的长度 Request.ServerVariables["Https"]
如果请求穿过安全通道(SSL),则返回ON如果请求来自非安全通道,则返回OFF Request.ServerVariables["Instance_ID"]
IIS实例的ID号 Request.ServerVariables["Instance_Meta_Path"]
响应请求的IIS实例的元数据库路径 Request.ServerVariables["Http_Accept_Encoding"]
返回内容如:gzip,deflate Request.ServerVariables["Http_Accept_Language"]
返回内容如:en-us Request.ServerVariables["Http_Connection"]
返回内容:Keep-Alive Request.ServerVariables["Http_Cookie"]
返回内容:Cookie的值 Request.ServerVariables["Http_User_Agent"]
返回内容:Mozilla/4.0[compatible;MSIE6.0;WindowsNT5.1;SV1] Request.ServerVariables["Https_Keysize"]
安全套接字层连接关键字的位数,如128 Request.ServerVariables["Https_Secretkeysize"]
服务器验证私人关键字的位数如1024 Request.ServerVariables["Https_Server_Issuer"]
服务器证书的发行者字段 Request.ServerVariables["Https_Server_Subject"]
服务器证书的主题字段 Request.ServerVariables["Auth_Password"]
当使用基本验证模式时,客户在密码对话框中输入的密码 Request.ServerVariables["Auth_Type"]
是用户访问受保护的脚本时,服务器用於检验用户的验证方法 Request.ServerVariables["Auth_User"]
代证的用户名 Request.ServerVariables["Cert_Cookie"]
唯一的客户证书ID号 Request.ServerVariables["Cert_Flag"]
客户证书标志,如有客户端证书,则bit0为0如果客户端证书验证无效,bit1被设置为1 Request.ServerVariables["Cert_Issuer"]
用户证书中的发行者字段 Request.ServerVariables["Cert_Keysize"]
安全套接字层连接关键字的位数,如128 Request.ServerVariables["Cert_Secretkeysize"]
服务器验证私人关键字的位数如1024 Request.ServerVariables["Cert_Serialnumber"]
客户证书的序列号字段 Request.ServerVariables["Cert_Server_Issuer"]
服务器证书的发行者字段 Request.ServerVariables["Cert_Server_Subject"]
服务器证书的主题字段 Request.ServerVariables["Cert_Subject"]
客户端证书的主题字段 Request.ServerVariables["Content_Type"]
客户发送的form内容或HTTPPUT的数据类型

Request请求总结的更多相关文章

  1. springMVC中 request请求数据绑定到Controller入参 过程剖析

    前言:Controller方法的参数类型可以是基本类型,也可以是封装后的普通Java类型.若这个普通Java类型没有声明任何注解,则意味着它的每一个属性都需要到Request中去查找对应的请求参数.众 ...

  2. iOS开发之Socket通信实战--Request请求数据包编码模块

    实际上在iOS很多应用开发中,大部分用的网络通信都是http/https协议,除非有特殊的需求会用到Socket网络协议进行网络数 据传输,这时候在iOS客户端就需要很好的第三方CocoaAsyncS ...

  3. Java中request请求之 - 带文件上传的form表单

    常用系统开发中总免不了显示图片,保存一些文件资料等操作. 这些操作的背后,就是程序员最熟悉的 enctype="multipart/form-data"类型的表单. 说起file类 ...

  4. Servlet的学习之Request请求对象(3)

    本篇接上一篇,将Servlet中的HttpServletRequest对象获取RequestDispatcher对象后能进行的[转发]forward功能和[包含]include功能介绍完. 首先来看R ...

  5. Servlet的学习之Request请求对象(2)

    在上一篇<Servlet的学习(十)>中介绍了HttpServletRequest请求对象的一些常用方法,而从这篇起开始介绍和学习HttpServletRequest的常用功能. 使用Ht ...

  6. 关于微信小程序的Request请求错误处理

    在学微信小程序的request请求的时候,一开始报“不在以下合法域名列表中,请参考文”的错误,后来又莫名其妙的报“400 Bad Request”错误,经过半天的研究,终于搞定了,把遇到的错误给大家分 ...

  7. javaWeb中request请求转发和response重定向

    1.访问资源 运用forward方法只能重定向到同一个Web应用程序中的一个资源. 而sendRedirect方法可以让你重定向到任何URL.  2.request.get Forward代码中的&q ...

  8. 【安卓网络请求开源框架Volley源码解析系列】定制自己的Request请求及Volley框架源码剖析

    通过前面的学习我们已经掌握了Volley的基本用法,没看过的建议大家先去阅读我的博文[安卓网络请求开源框架Volley源码解析系列]初识Volley及其基本用法.如StringRequest用来请求一 ...

  9. PHP Request请求封装

    /** * Request请求封装 * Class Request * @package tool */ class Request { // curl 请求错误码 protected static ...

  10. 微信小程序wx.request请求用POST后台得不到传递数据

    微信小程序的wx.request请求,method设为POST并向后台传递数据,但从后台返回的信息来看后台并没有获得传递的数据 wx.request({              url: 'url' ...

随机推荐

  1. Unity导出的Xcode项目,iOS端管理摄像头的方法

    Vuforia导出的工程中管理摄像头问题 在以前的篇幅中提到了unity端和iOS端的动态交互.现在出现了一个问题.因为设备上的摄像机是实例化过来的.并且是一个单例.unity虽然已经不再显示了.但是 ...

  2. 在Ubuntu-14.04.3配置并成功编译Android6_r1源码

    折腾了一周,终于把Android6_r1的源码编译成功.先上图,这是在ubuntu中运行的Android模拟器: 由于我是在win8中安装虚拟机VMware,然后在虚拟机中安装Ubuntu进行编译,所 ...

  3. jdbc基础 (五) 连接池与数据源 DBCP以及C3P0的使用

    一.连接池的概念和使用 在实际应用开发中,特别是在WEB应用系统中,如果JSP.Servlet或EJB使用JDBC直接访问数据库中的数据,每一次数据访问请求都必须经历建立数据库连接.打开数据库.存取数 ...

  4. How to use VS2012 remote debug Windows Azure Cloud Services

    Background: Windows Azure Cloud Services 可以在本地调试,使用Visual Studio 2012 + 模拟器 Emulator.但是模拟器的工作状态和环境和真 ...

  5. Bootstrap3.0学习第十五轮(大屏幕介绍、页面标题、缩略图、警示框、Well)

    详情请查看 http://aehyok.com/Blog/Detail/22.html 个人网站地址:aehyok.com QQ 技术群号:206058845,验证码为:aehyok 本文文章链接:h ...

  6. angular的$scope,这东西满重要的

    <!doctype html> <html> <head> <meta charset="utf-8"> <title> ...

  7. jquery 的 sort 函数

    members = [45, 23, 12, 34];members = members.sort(function(a, b){return a-b; );这里面a-b为升序,b-a降序排列:但a, ...

  8. Linux使用

    RedHat5 [cat] 将一个文件内容加入到另外一个另外一个文件中 参数 -n 或 --number 由 1 开始对所有输出的行数编号 -b 或 --number-nonblank 和 -n 相似 ...

  9. CSS模版收集

    Css Reset by Eric MeyerURL:http://www.ahrefmagazine.com/web-design/30-useful-css-snippets-for-develo ...

  10. UVA5876 Writings on the Wall 扩展KMP

    扩展KMP的简单题. #include<stdio.h> #include<string.h> #define maxn 51010 char s[maxn],t[maxn]; ...