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. Java 中的 request 和response 理解

    request和response(请求和响应)  1.当Web容器收到客户端的发送过来http请求,会针对每一次请求,分别创建一个用于代表此次请求的HttpServletRequest对象(reque ...

  3. 客户端的数据来源:QueryString, Form, Cookie Request[]与Request.Params[]

    在ASP.NET编程中,有三个比较常见的来自于客户端的数据来源:QueryString, Form, Cookie . 我们可以在HttpRequest中访问这三大对象. QueryString: 获 ...

  4. SpringtMVC运行流程:@RequestMapping 方法中的 Map、HttpServletRequest等参数信息是如何封装和传递的(源码理解)

    在平时开发SpringtMVC程序时,在Controller的方法上,通常会传入如Map.HttpServletRequest类型的参数,并且可以方便地向里面添加数据.同时,在Jsp中还可以直接使用r ...

  5. Response ServletContext 中文乱码 Request 编码 请求行 共享数据 转发重定向

    Day35  Response 1.1.1 ServletContext概念 u 项目的管理者(上下文对象),服务器启动时,会为每一个项目创建一个对应的ServletContext对象. 1.1.2  ...

  6. 【asp.net】asp.net遍历Request的信息

    #需求: 在服务端获取从客户端发送过来的所有数据信息: #方案: 1.服务端代码 public void ProcessRequest(HttpContext context) { //打印所有参数信 ...

  7. java web(三):ServletContext、session、ServletConfig、request、response对象

    上一篇讲了Servlet: 1)什么是Servlet[servlet本身就是一种Java类,这种Java类提供了web形式的方法,只要实现了servlet接口的类,都是一种servlet资源.] 2) ...

  8. request 的介绍使用属性

    上下文:相当于一个容器,保存了 Flask 程序运行过程中的一些信息. Flask中有两种上下文,请求上下文和应用上下文 请求上下文(request context) 在 flask 中,可以直接在视 ...

  9. Fiddler抓包4-工具介绍(request和response)

    前言 本篇简单的介绍下fiddler界面的几块区域,以及各自区域到底是干什么用的,以便于各好的掌握这个工具 一.工具简介 1.第一块区域是设置菜单,这个前面2篇都有介绍 2.第二块区域是一些快捷菜单, ...

随机推荐

  1. C#入门篇6-5:字符串操作 测试StringBuilder的运行效率

    //测试StringBuilder的运行效率 public static void Fun2() { #region string string str = "我喜欢编程!"; / ...

  2. 解析Json的谷歌官方方法Gson和阿里巴巴的fastJson方法。

    //测试单个json文本 public void testGsonTwo(){ String jsonStr = "{\"id\":100,\"name\&qu ...

  3. poj 2536 GopherII(二分图匹配)

    Description The gopher family, having averted the canine threat, must face a new predator. The are n ...

  4. DB2事务日志已满的解决方法

    DB2命令终端输入: db2 update db cfg for <dbname> using LOGPRIMARY 50 db2 update db cfg for <dbname ...

  5. Spring学习笔记之整合hibernate

    1.web.xml里边要配置好对应的springxml的路径 <context-param> <param-name>contextConfigLocation</par ...

  6. mouseOver与rollOver

    区别: 当父容器监听这两个事件,鼠标从父容器移到子容器再移回父容器时,会触发mouseOver.mouseout事件,但是不会触发rollover.rollout事件.

  7. checkbox的全选、反选、删除(MainActivity)

    package com.example.ay; import java.util.ArrayList;import java.util.List; import com.example.adapter ...

  8. js和C#中的编码和解码

    同一个字符串,用URL编码和HTML编码,结果是完全不同的. JS中的URL编码和解码.对 ASCII 字母和数字及以下特殊字符无效: - _ . ! ~ * ' ( ) ,/?:@&=+$# ...

  9. 转:HashMap深度解析(一)

      HashMap哈希码hashCodeequals 本文来自:高爽|Coder,原文地址:http://blog.csdn.net/ghsau/article/details/16843543,转载 ...

  10. hdu1394

    //Accepted 292 KB 46 ms //利用线段树求逆序数 //对于每个数看前面比他大的数有多少个,更新这个数的个数 #include <cstdio> #include &l ...