HttpRequest.Url 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取有关当前请求的 URL 的信息。
public:
property Uri ^ Url { Uri ^ get(); };
public Uri Url { get; }
member this.Url : Uri
Public ReadOnly Property Url As 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>")