HttpResponse.ApplyAppPathModifier(String) 方法

定义

如果会话使用 Cookieless 会话状态,则将该会话 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

资源的虚拟路径。

返回

String

已插入会话 ID 的 virtualPath

示例

以下示例声明一 urlConverted个名为字符串变量,并将其设置为方法调用的结果 ApplyAppPathModifier 。 然后,代码将变量的值传递给 HyperLink 控件 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

注解

ApplyAppPathModifier 仅用于无 Cookie 会话来构造绝对 HREF。

适用于