共用方式為


HttpRequest.Url 屬性

定義

取得關於目前要求的 URL 資訊。

public:
 property Uri ^ Url { Uri ^ get(); };
public Uri Url { get; }
member this.Url : Uri
Public ReadOnly Property Url As Uri

屬性值

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

適用於

另請參閱