CustomError.Redirect Property

Definition

Gets or sets the redirection URL.

[System.Configuration.ConfigurationProperty("redirect", IsRequired=true)]
[System.Configuration.StringValidator(MinLength=1)]
public string Redirect { get; set; }

Property Value

The URL to which the application is redirected when an error occurs.

Attributes

Examples

The following code example shows how to use the redirection URL. Refer to the code example in the CustomError class topic to learn how to get the collection.

// Get first errorr Redirect.
CustomError currentError0 =
    customErrorsCollection[0];
string currentRedirect =
    currentError0.Redirect;

// Set first error Redirect.
currentError0.Redirect =
    "customError404.htm";

Remarks

The Redirect property identifies the URL of the custom page associated with a specific error.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1