HttpResponse.ApplyAppPathModifier(String) Methode

Definition

Fügt dem virtuellen Pfad eine Sitzungs-ID hinzu, wenn für die Sitzung ein Cookieless-Sitzungszustand verwendet wird, und gibt den kombinierten Pfad zurück. Wenn der Cookieless-Sitzungszustand nicht verwendet wird, gibt ApplyAppPathModifier(String) den ursprünglichen virtuellen Pfad zurück.

public:
 System::String ^ ApplyAppPathModifier(System::String ^ virtualPath);
public string ApplyAppPathModifier (string virtualPath);
member this.ApplyAppPathModifier : string -> string
Public Function ApplyAppPathModifier (virtualPath As String) As String

Parameter

virtualPath
String

Der virtuelle Pfad zu einer Ressource.

Gibt zurück

Der virtualPath mit der eingefügten Sitzungs-ID.

Beispiele

Im folgenden Beispiel wird eine Zeichenfolgenvariable mit dem Namen urlConverteddeklariert und auf das Ergebnis eines ApplyAppPathModifier Methodenaufrufs festgelegt. Der Code übergibt dann den Wert der Variablen an die -Eigenschaft eines HyperLink Steuerelements NavigateUrl .

// Declare a string variable and set it to the result
// of a call to the ApplyAppPathModifier method.
// Then set the NavigateUrl property of a Hyperlink control
// to the string's value.
string urlConverted = Response.ApplyAppPathModifier("TestPage.aspx");
hlTest1.NavigateUrl = urlConverted;
' Declare a string variable and set it to the result
' of a call to the ApplyAppPathModifier method.
' Then set the NavigateUrl property of a Hyperlink control
' to the string's value.
Dim urlConverted As String = Response.ApplyAppPathModifier("TestPage.aspx")
hlTest1.NavigateUrl = urlConverted

Hinweise

ApplyAppPathModifier wird nur mit cookielosen Sitzungen verwendet, um absolute HREFs zu erstellen.

Gilt für: