UrlMappingCollection.Add Method (UrlMapping)

 

Adds the specified UrlMapping to the collection.

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

Public Sub Add (
	urlMapping As UrlMapping
)

Parameters

urlMapping
Type: System.Web.Configuration.UrlMapping

The UrlMapping object to add to the collection.

The following code example adds a UrlMapping object to the UrlMappingCollection.

Refer to the code example in the UrlMappingCollection class topic to learn how to get the collection.

' Create a new UrlMapping object.
urlMapping = New UrlMapping( _
"~/home.aspx", "~/default.aspx?parm1=1")

' Add the urlMapping to 
' the collection.
urlMappings.Add(urlMapping)

' Update the configuration file.
If Not urlMappingSection.IsReadOnly() Then
    configuration.Save()
End If

.NET Framework
Available since 2.0
Return to top
Show: