Request.RawUrl vs. Request.Url

后端 未结 5 762
感动是毒
感动是毒 2020-12-13 12:38

What is the difference between Request.RawUrl and Request.Url in ASP.NET?

5条回答
  •  庸人自扰
    2020-12-13 12:54

    Request.RawUrl is very similar to Request.Url.PathAndQuery except that Request.Url.PathAndQuery includes the Default Document if one was used whereas Request.RawUrl does not. From my experience, this is true for ASP.Net 4.0 and higher.

提交回复
热议问题