zoukankan      html  css  js  c++  java
  • Request的RawUrl属性,和其它获取url信息的各种方法比较

    以下转自http://hi.baidu.com/anyedage/blog/item/e8c45ed3b90d25023af3cf26.html

    Request.ApplicationPath: /testweb

    Request.CurrentExecutionFilePath: /testweb/default.aspx

    Request.FilePath: /testweb/default.aspx

    Request.Path: /testweb/default.aspx

    Request.PathInfo:

    Request.PhysicalApplicationPath: E:\WWW\testweb\

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

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

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

    Request.Url.AbsoluteUri: http://www.test.com/testweb/default.aspx?id=1

    Request.Url.Host: www.test.com

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



                 Response.Write("<b>Request.ApplicationPath:</b> " + Request.ApplicationPath + "<br>");

                 Response.Write("<b>Request.CurrentExecutionFilePath:</b> " + Request.CurrentExecutionFilePath + "<br>");

                 Response.Write("<b>Request.FilePath:</b> " + Request.FilePath + "<br>");

                 Response.Write("<b>Request.Path:</b> " + Request.Path + "<br>");

                 Response.Write("<b>Request.PathInfo:</b> " + Request.PathInfo + "<br>");

                 Response.Write("<b>Request.PhysicalApplicationPath:</b> " + Request.PhysicalApplicationPath + "<br>");

                 Response.Write("<b>Request.PhysicalPath:</b> " + Request.PhysicalPath + "<br>");

                 Response.Write("<b>Request.RawUrl:</b> " + Request.RawUrl + "<br>");

                 Response.Write("<b>Request.Url.AbsolutePath:</b> " + Request.Url.AbsolutePath + "<br>");

                 Response.Write("<b>Request.Url.AbsoluteUri:</b> " + Request.Url.AbsoluteUri + "<br>");

                 Response.Write("<b>Request.Url.Host:</b> " + Request.Url.Host + "<br>");

                 Response.Write("<b>Request.Url.LocalPath:</b> " + Request.Url.LocalPath + "<br>");

    乌龟才背着房子过一辈子
  • 相关阅读:
    ubuntu上安装boost库
    boost array使用
    2017新年总结
    qt 设置等待事件
    vs下 qt源码调试
    使用记事本创建Web服务(WebService)
    司以类聚,人以群分
    附件上传
    DES 加密解密
    工作总结-js插件
  • 原文地址:https://www.cnblogs.com/Yellowshorts/p/2955346.html
Copyright © 2011-2022 走看看