zoukankan      html  css  js  c++  java
  • 页面请求相关

    以下记录一下,方便以后查阅。。。

    Request下获取Url所有相关属性 Request的RawUrl属性,和其它获取url信息的各种方法比较 测试的url地址是http:
    //www.cnblogs.com/dachie/default.aspx?id=1, 结果如下: Request.ApplicationPath: /dachie Request.CurrentExecutionFilePath: /dachie/default.aspx Request.FilePath: /dachie/default.aspx Request.Path: /dachie/default.aspx Request.PathInfo: Request.PhysicalApplicationPath: E:\WWW\testweb\ Request.PhysicalPath: E:\WWW\dachie\default.aspx Request.RawUrl: /dachie/default.aspx?id=1 Request.Url.AbsolutePath: /dachie/default.aspx Request.Url.AbsoluteUri: http://www.cnblogs.com/dachie/default.aspx?id=1 Request.Url.Host: www.cnblogs.com Request.Url.LocalPath: /dachie/default.aspx
         获取请求的IP地址
            public static string GetRequestIP()
            {
                string result = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
                if (string.IsNullOrEmpty(result))
                {
                    result = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];
                }
                if (string.IsNullOrEmpty(result))
                {
                    result = HttpContext.Current.Request.UserHostAddress;
    
                }
                return result;
            }
    页面后台向前台输出脚本
    if (!Page.ClientScript.IsStartupScriptRegistered("preview"))
    {
        Page.ClientScript.RegisterStartupScript(GetType(), "preview", "window.open('" + BOManager.CMSTempletBO.CreateContent(CMSTempletBO.PageType.Preview, entity) + "');", true);
    }

    Request下获取Url所有相关属性

    Request的RawUrl属性,和其它获取url信息的各种方法比较

    测试的url地址是http://www.cnblogs.com/dachie/default.aspx?id=1, 结果如下:

    Request.ApplicationPath: /dachie

    Request.CurrentExecutionFilePath: /dachie/default.aspx

    Request.FilePath: /dachie/default.aspx

    Request.Path: /dachie/default.aspx

    Request.PathInfo:

    Request.PhysicalApplicationPath: E:\WWW\testweb\

    Request.PhysicalPath: E:\WWW\dachie\default.aspx

    Request.RawUrl: /dachie/default.aspx?id=1

    Request.Url.AbsolutePath: /dachie/default.aspx

    Request.Url.AbsoluteUri: http://www.cnblogs.com/dachie/default.aspx?id=1

    Request.Url.Host: www.cnblogs.com

    Request.Url.LocalPath: /dachie/default.aspx

  • 相关阅读:
    Flex布局新写法兼容写法详解
    一个CSS值转REM的Sublime Text插件
    Oracle SQL函数之转换函数To_char汇总
    Oracle SQL函数之日期函数
    Oracle SQL函数之数学函数
    Oracle SQL函数之字符串函数
    Sybase isql常用命令
    sybase用户管理(创建、授权、删除)
    使用isql连接Sybase ASE数据库的常见错误及处理方式
    Sybase配置中文语言支持及字符集
  • 原文地址:https://www.cnblogs.com/zhangchen/p/2498906.html
Copyright © 2011-2022 走看看