Udostępnij za pośrednictwem


HttpRequest.ApplicationPath Właściwość

Definicja

Pobiera ścieżkę główną aplikacji wirtualnej aplikacji ASP.NET na serwerze.

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

Wartość właściwości

String

Ścieżka wirtualna bieżącej aplikacji.

Przykłady

W poniższym przykładzie użyto Write metody do kodowania HTML, a następnie zapisania wartości ApplicationPath właściwości do pliku tekstowego. Ten przykład kodu jest częścią większego przykładu udostępnionego HttpRequest dla klasy . Zakłada ona istnienie StreamWriter obiektu o nazwie sw.

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

W poniższym przykładzie użyto ApplicationPath właściwości , aby programowo skonstruować ścieżkę do zasobu, który znajduje się w stałej lokalizacji w aplikacji. Strona odwołująca się do zasobu nie musi znajdować się w tym samym katalogu co zasób.

<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

    protected void Page_Load(object sender, EventArgs e)
    {
        Label1.Text = Request.ApplicationPath;
        Image1.ImageUrl = Request.ApplicationPath + "/images/Image1.gif";
        Label2.Text = Image1.ImageUrl;
    }
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>HttpRequest.ApplicationPath Example</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        ApplicationPath:<br />
        <asp:Label ID="Label1" runat="server" ForeColor="Brown" /><br />

        <asp:Image ID="Image1" runat="server" /><br />

        ImageUrl:<br />
        <asp:Label ID="Label2" runat="server" ForeColor="Brown" />
        <br />
        </div>
    </form>
</body>
</html>
<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
        Label1.Text = Request.ApplicationPath
        Image1.ImageUrl = Request.ApplicationPath + "/images/Image1.gif"
        Label2.Text = Image1.ImageUrl
    End Sub
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>HttpRequest.ApplicationPath Example</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        ApplicationPath:<br />
        <asp:Label ID="Label1" runat="server" ForeColor="Brown" /><br />

        <asp:Image ID="Image1" runat="server" />

        ImageUrl:<br />
        <asp:Label ID="Label2" runat="server" ForeColor="Brown" />
        <br />
     </div>
    </form>
</body>
</html>

Jeśli uruchomisz ten przykład w aplikacji internetowej o nazwie WebSite1, /WebSite1 zostanie wyświetlona jako wartość ApplicationPath właściwości i /WebSite1/images/Image1.gif zostanie wyświetlona jako pełna ścieżka obrazu.

Uwagi

Ta właściwość służy do konstruowania adresu URL względem katalogu głównego aplikacji ze strony lub kontrolki użytkownika sieci Web, która nie znajduje się w katalogu głównym. Dzięki temu strony i udostępnione kontrolki, które istnieją na różnych poziomach struktury katalogów, mogą używać tego samego kodu, aby łączyć się z zasobami w stałych lokalizacjach w aplikacji.

Dotyczy