HttpRequest.Url 属性

定义

获取有关当前请求的 URL 的信息。

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

属性值

Uri

包含当前请求的 URL Uri 的对象。

示例

下面的代码示例将 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>")

适用于

另请参阅