HttpRequest.PathInfo 属性

定义

获取具有 URL 扩展名的资源的附加路径信息。

public:
 property System::String ^ PathInfo { System::String ^ get(); };
public string PathInfo { get; }
member this.PathInfo : string
Public ReadOnly Property PathInfo As String

属性值

String

资源的附加路径信息。

示例

下面的代码示例确定该属性是否 PathInfo 包含空字符串。 如果这样做,该方法 Write 将写入一个字符串,指示此字符串到文件。 如果不这样做,该方法 HtmlEncode HTML 对属性的值 PathInfo 进行编码,并且 WriteLine 该方法将编码的值写入文件。 此代码示例是为类提供的大型示例的 HttpRequest 一部分。

// Write the PathInfo property value
// or a string if it is empty.
if (Request.PathInfo == String.Empty)
{
    sw.WriteLine("The PathInfo property contains no information.");
}
else
{
    sw.WriteLine(Server.HtmlEncode(Request.PathInfo));
}
' Write the PathInfo property value
' or a string if it is empty.
If Request.PathInfo = String.Empty Then
    sw.WriteLine("The PathInfo property contains no information.")
Else
    sw.WriteLine(Server.HtmlEncode(Request.PathInfo))
End If

注解

对于 URL http://www.contoso.com/virdir/page.html/tailPathInfo 值为 /tail。

适用于

另请参阅