HttpResponse.ApplyAppPathModifier(String) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Adiciona uma ID de sessão para o caminho virtual se a sessão estiver usando o estado de sessão Cookieless retornar o caminho combinado. Se o estado de sessão Cookieless não for usado, ApplyAppPathModifier(String) retornará caminho virtual original.
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
Parâmetros
- virtualPath
- String
O caminho virtual para um recurso.
Retornos
O virtualPath
com a ID de sessão inserida.
Exemplos
O exemplo a seguir declara uma variável de cadeia de caracteres nomeada urlConverted
e define-a como o resultado de uma ApplyAppPathModifier chamada de método. Em seguida, o código passa o valor da variável para a propriedade de NavigateUrl um HyperLink controle.
// 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
Comentários
ApplyAppPathModifier é usado apenas com sessões sem cookie para construir HREFs absolutos.