HttpRequest.RawUrl 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得目前要求的原始 URL。
public:
property System::String ^ RawUrl { System::String ^ get(); };
public string RawUrl { get; }
member this.RawUrl : string
Public ReadOnly Property RawUrl As String
屬性值
目前要求的原始 URL。
範例
下列程式碼範例會 HtmlEncode 使用 方法來 HTML 編碼 屬性的值 RawUrl ,以及 WriteLine 將編碼值寫入檔案的方法。 此程式碼範例是提供給 類別之較大範例的 HttpRequest 一部分。
// Write request information to the file with HTML encoding.
sw.WriteLine(Server.HtmlEncode(Request.PhysicalApplicationPath));
sw.WriteLine(Server.HtmlEncode(Request.PhysicalPath));
sw.WriteLine(Server.HtmlEncode(Request.RawUrl));
' Write request information to the file with HTML encoding.
sw.WriteLine(Server.HtmlEncode(Request.PhysicalApplicationPath))
sw.WriteLine(Server.HtmlEncode(Request.PhysicalPath))
sw.WriteLine(Server.HtmlEncode(Request.RawUrl))
備註
原始 URL 會定義為網域資訊之後 URL 的一部分。 在 URL 字串 http://www.contoso.com/articles/recent.aspx
中,原始 URL 是 /articles/recent.aspx。 如果存在,原始 URL 會包含查詢字串。