HttpRequest.FilePath Vlastnost

Definice

Získá virtuální cestu aktuálního požadavku.

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

Hodnota vlastnosti

Virtuální cesta aktuálního požadavku.

Příklady

Následující příklad kódu používá metodu HtmlEncode html kódovat hodnotu FilePath vlastnosti a metodu WriteLine k zápisu zakódované hodnoty do souboru. Tento příklad kódu je součástí většího příkladu HttpRequest pro třídu .

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

Poznámky

Vlastnost FilePath nezahrnuje PathInfo přívěs. Například pro adresu URL http://www.contoso.com/virdir/page.html/tailFilePath je hodnota /virdir/page.html.

Platí pro

Viz také