Server.Variables属性大全(转载)

简介:

 

///取上一页地址

Response.Write(Request.ServerVariables["HTTP_REFERER"].ToString() + "<Br/>");

///取服务器名称(不包括端口号)

Response.Write(Request.ServerVariables["SERVER_NAME"].ToString() + "<Br/>");

///取服务器名称(包括端口号)

Response.Write(Request.ServerVariables["HTTP_HOST"].ToString() + "<Br/>");

///取服务器ip

Response.Write(Request.ServerVariables["LOCAL_ADDR"].ToString() + "<Br/>");

///取用户ip

Response.Write(Request.ServerVariables["Remote_Host"].ToString() + "<Br/>");

///取用户真实ip

Response.Write(Request.ServerVariables["REMOTE_ADDR"].ToString() + "<Br/>");

///取服务器端口号

Response.Write(Request.ServerVariables["SERVER_PORT"].ToString() + "<Br/>");

///取服务器的绝对路径

Response.Write(Request.ServerVariables["APPL_PHYSICAL_PATH"].ToString() + "<Br/>");

///取本文件的绝对路径1

Response.Write(Request.ServerVariables["PATH_TRANSLATED"].ToString() + "<Br/>");

///取本文件的绝对路径2

Response.Write(Request.ServerVariables["script_NAME"].ToString() + "<Br/>");

///取本文件的绝对路径3

Response.Write(Request.ServerVariables["PATH_INFO"].ToString() + "<Br/>");

///取地址栏后的参数

Response.Write(Request.ServerVariables["QUERY_STRING"].ToString() + "<Br/>");

///取服务器语言信息

Response.Write(Request.ServerVariables["HTTP_ACCEPT_LANGUAGE"].ToString() + "<Br/>");

///取客户端系统信息

Response.Write(Request.ServerVariables["HTTP_USER_AGENT"].ToString() + "<Br/>");

原文地址:http://www.cnblogs.com/zwffff/archive/2009/04/18/1438567.html

版权说明

  如果标题未标有<转载、转>等字则属于作者原创,欢迎转载,其版权归作者和博客园共有。
  作      者:温景良
  文章出处:http://wenjl520.cnblogs.com/  或  http://www.cnblogs.com/

分类: Asp.Net
0
0
« 上一篇: 6个你必须用到AJAX的地方与6个不必用到的地方(转载)
» 下一篇: 看房记之厦门特房红树康桥
posted @ 2009-04-18 20:23 温景良(Jason) Views( 100) Comments( 0) Edit 收藏
 
相关文章
|
5月前
|
SQL 运维 关系型数据库
will be dropped if server is in r-o mode问题解决
【6月更文挑战第26天】will be dropped if server is in r-o mode问题解决
109 2
|
5月前
|
关系型数据库 MySQL 数据库
【已解决】[图文步骤] message from server: “Host ‘172.17.0.1‘ is not allowed to connect to this MySQL server“
【已解决】[图文步骤] message from server: “Host ‘172.17.0.1‘ is not allowed to connect to this MySQL server“
189 0
|
6月前
|
SQL 安全 网络安全
解决:provider:Named Pipes Provider error:40无法打开SQL Server的连接 的3种方式
解决:provider:Named Pipes Provider error:40无法打开SQL Server的连接 的3种方式
981 0
|
关系型数据库 MySQL 数据库
MySQL - 查看 / 修改配置参数(Global Variables)
MySQL - 查看 / 修改配置参数(Global Variables)
938 0