Request.RawUrl vs. Request.Url

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

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

5条回答
  •  忘掉有多难
    2020-12-13 12:59

    Request.RawUrl returns a string, it's everything after the domain information for the current url.

    Eg, for: Request.RawUrl vs. Request.Url

    Request.RawUrl would be /questions/2019735/request-rawurl-vs-request-url

    Request.Url returns a Uri object, http://msdn.microsoft.com/en-us/library/system.uri_members.aspx

提交回复
热议问题