CustomErrorCollection.Set Method (CustomError)
.NET Framework (current version)
Adds the specified CustomError to the collection.
Assembly: System.Web (in System.Web.dll)
Parameters
- customError
-
Type:
System.Web.Configuration.CustomError
The CustomError to add to the collection.
This specified error replaces the current configuration error element.
The following code example shows how to set the specified CustomError object. Refer to the code example in the CustomErrorCollection class topic to learn how to get the collection.
' Using the Set method. Dim newCustomError _ As New CustomError(404, "customerror404.htm") ' Update the configuration file. If Not customErrorsSection.SectionInformation.IsLocked Then ' Add the new custom error to the collection. customErrorsCollection.Set(newCustomError) configuration.Save() End If
.NET Framework
Available since 2.0
Available since 2.0
Show: