CustomError.Redirect Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the redirection URL.
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
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";
' Get first errorr Redirect.
Dim currentError0 As CustomError = _
customErrorsCollection(0)
Dim currentRedirect As String = _
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
Zusammenarbeit auf GitHub
Die Quelle für diesen Inhalt finden Sie auf GitHub, wo Sie auch Issues und Pull Requests erstellen und überprüfen können. Weitere Informationen finden Sie in unserem Leitfaden für Mitwirkende.