CustomErrorsSection.DefaultRedirect 属性

定义

获取或设置重定向的默认 URL。

public:
 property System::String ^ DefaultRedirect { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("defaultRedirect")]
public string DefaultRedirect { get; set; }
[<System.Configuration.ConfigurationProperty("defaultRedirect")>]
member this.DefaultRedirect : string with get, set
Public Property DefaultRedirect As String

属性值

String

应用程序在发生错误时重定向到的默认 URL。

属性

例外

DefaultRedirect 属性为 null。 这是默认设置。

示例

下面的代码示例说明如何使用 DefaultRedirect 属性。

请参阅类主题中的 CustomErrorsSection 代码示例,了解如何获取该部分。

// Get the currentDefaultRedirect
string currentDefaultRedirect = 
    customErrorsSection.DefaultRedirect;
' Get the currentDefaultRedirect
  Dim currentDefaultRedirect As String = _
  customErrorsSection.DefaultRedirect

注解

DefaultRedirect如果未指定,则会改为显示标准错误。 指定 DefaultRedirect 在不存在错误自定义页的情况下要激活的泛型错误页。

备注

URL 可能是绝对值或相对值。 相对 URL 相对于指定 DefaultRedirect错误所在的网页的Web.config文件。 从平铺 (~) 开始的相对 URL 相对于应用程序的根路径。

适用于