CustomErrorsMode 枚举

定义

指定自定义错误模式的值。

public enum class CustomErrorsMode
public enum CustomErrorsMode
type CustomErrorsMode = 
Public Enum CustomErrorsMode
继承
CustomErrorsMode

字段

Off 2

禁用自定义错误,并允许显示标准错误。

On 1

启用自定义错误。 如果没有指定 DefaultRedirect,则发出标准错误。

RemoteOnly 0

仅在远程客户端上启用自定义错误。 仅向远程客户端显示自定义错误,而在本地主机显示 ASP.NET 错误。

示例

下面的代码示例演示如何设置 Mode 属性。

// Get the current Mode.
CustomErrorsMode currentMode = 
    customErrorsSection.Mode;

// Set the current Mode.
customErrorsSection.Mode = 
    CustomErrorsMode.RemoteOnly;
' Get the current Mode.
  Dim currentMode _
  As CustomErrorsMode = customErrorsSection.Mode

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

注解

CustomErrorsMode枚举设置 属性时Mode可以使用的值。 这些值定义是启用、禁用还是仅向远程客户端显示自定义错误。

适用于

另请参阅