HttpResponse.ApplyAppPathModifier(String) メソッド

定義

セッションが Cookieless セッション状態を使用している場合に、セッション ID を仮想パスに追加し、その ID を組み合わせたパスを返します。 Cookieless セッション状態が使用されていない場合、ApplyAppPathModifier(String) は元の仮想パスを返します。

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

パラメーター

virtualPath
String

リソースへの仮想パス。

戻り値

セッション ID が挿入された virtualPath

次の例では、 という名前 urlConvertedの文字列変数を宣言し、メソッド呼び出しの結果に ApplyAppPathModifier 設定します。 その後、コードは変数の値をコントロールNavigateUrlの プロパティにHyperLink渡します。

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

注釈

ApplyAppPathModifier は、絶対 HREF を構築するために cookieless セッションでのみ使用されます。

適用対象