CustomErrorsSection.Mode Property

 

Gets or sets the error display modality.

Namespace:   System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

<ConfigurationPropertyAttribute("mode", DefaultValue := CustomErrorsMode.RemoteOnly)>
Public Property Mode As CustomErrorsMode

Property Value

Type: System.Web.Configuration.CustomErrorsMode

One of the CustomErrorsMode values. The default is RemoteOnly.

Specifies whether custom errors are enabled, disabled, or shown only to remote clients.

The following code example shows how to use the Mode property.

Refer to the code example in the CustomErrorsSection class topic to learn how to get the section.

' Get the current Mode.
  Dim currentMode _
  As CustomErrorsMode = customErrorsSection.Mode

' Set the current Mode.
  customErrorsSection.Mode = _
  CustomErrorsMode.RemoteOnly

.NET Framework
Available since 2.0
Return to top
Show: