HttpRequest.Url 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得關於目前要求的 URL 資訊。
public:
property Uri ^ Url { Uri ^ get(); };
public Uri Url { get; }
member this.Url : Uri
Public ReadOnly Property Url As Uri
屬性值
Uri 物件,包含目前要求的 URL。
範例
下列程式碼範例會將 Uri 目前要求的物件指派給物件變數,並將 URL 物件的兩個屬性值顯示至 HTTP 輸出。
Uri MyUrl = Request.Url;
Response.Write("URL Port: " + MyUrl.Port + "<br>");
Response.Write("URL Protocol: " + Server.HtmlEncode(MyUrl.Scheme) + "<br>");
Dim MyUrl As Uri = Request.Url
Response.Write("URL Port: " & MyUrl.Port & "<br>")
Response.Write("URL Protocol: " & Server.HtmlEncode(MyUrl.Scheme) & "<br>")