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>");

    乌龟才背着房子过一辈子
  • 相关阅读:
    洛谷[P1002]过河卒
    ACM-Teleportation
    ACM-Team Tic Tac Toe
    Data_Structure04-树
    Data_Structure03-栈和队列
    Data_Structure02-线性表
    Data_Structure01-绪论
    C语言第二次实验报告
    C语言第一次实验报告
    mysql
  • 原文地址:https://www.cnblogs.com/Yellowshorts/p/2955346.html
Copyright © 2011-2022 走看看