HttpRequest.Path Свойство

Определение

Получает виртуальный путь текущего запроса.

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

Значение свойства

String

Виртуальный путь текущего запроса.

Примеры

В следующем примере кода используется HtmlEncode метод для кодирования значения Path свойства и WriteLine метода для записи закодированного значения в файл. Этот пример кода является частью более крупного примера, предоставленного HttpRequest для класса.

// Write request information to the file with HTML encoding.
sw.WriteLine(Server.HtmlEncode(DateTime.Now.ToString()));
sw.WriteLine(Server.HtmlEncode(Request.CurrentExecutionFilePath));
sw.WriteLine(Server.HtmlEncode(Request.ApplicationPath));
sw.WriteLine(Server.HtmlEncode(Request.FilePath));
sw.WriteLine(Server.HtmlEncode(Request.Path));
' Write request information to the file with HTML encoding.
sw.WriteLine(Server.HtmlEncode(DateTime.Now.ToString()))
sw.WriteLine(Server.HtmlEncode(Request.CurrentExecutionFilePath))
sw.WriteLine(Server.HtmlEncode(Request.ApplicationPath))
sw.WriteLine(Server.HtmlEncode(Request.FilePath))
sw.WriteLine(Server.HtmlEncode(Request.Path))

Комментарии

Это Path объединение прицепа FilePath PathInfo . Например, для URL-адреса http://www.contoso.com/virdir/page.html/tailPath — /virdir/page.html/tail.

Применяется к

См. также раздел