CustomError.Redirect Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit l'URL de redirection.
public:
property System::String ^ Redirect { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("redirect", IsRequired=true)]
[System.Configuration.StringValidator(MinLength=1)]
public string Redirect { get; set; }
[<System.Configuration.ConfigurationProperty("redirect", IsRequired=true)>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.Redirect : string with get, set
Public Property Redirect As String
Valeur de propriété
URL vers laquelle l'application est redirigée lorsqu'une erreur se produit.
- Attributs
Exemples
L’exemple de code suivant montre comment utiliser l’URL de redirection. Reportez-vous à l’exemple de code dans la CustomError rubrique de classe pour savoir comment obtenir la collection.
// Get first errorr Redirect.
CustomError currentError0 =
customErrorsCollection[0];
string currentRedirect =
currentError0.Redirect;
// Set first error Redirect.
currentError0.Redirect =
"customError404.htm";
' Get first errorr Redirect.
Dim currentError0 As CustomError = _
customErrorsCollection(0)
Dim currentRedirect As String = _
currentError0.Redirect
' Set first error Redirect.
currentError0.Redirect = "customError404.htm"
Remarques
La Redirect propriété identifie l’URL de la page personnalisée associée à une erreur spécifique.