Sdílet prostřednictvím


CustomError.Redirect Vlastnost

Definice

Získá nebo nastaví adresu URL přesměrování.

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

Hodnota vlastnosti

Adresa URL, na kterou je aplikace přesměrována, když dojde k chybě.

Atributy

Příklady

Následující příklad kódu ukazuje, jak použít adresu URL přesměrování. Informace o tom, jak kolekci CustomError získat, najdete v příkladu kódu v tématu třídy.

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

Poznámky

Vlastnost Redirect identifikuje adresu URL vlastní stránky přidružené ke konkrétní chybě.

Platí pro