UrlMappingCollection.Add(UrlMapping) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds the specified UrlMapping to the collection.
public:
void Add(System::Web::Configuration::UrlMapping ^ urlMapping);
public void Add (System.Web.Configuration.UrlMapping urlMapping);
member this.Add : System.Web.Configuration.UrlMapping -> unit
Public Sub Add (urlMapping As UrlMapping)
Parameters
- urlMapping
- UrlMapping
The UrlMapping object to add to the collection.
Examples
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 (!urlMappingSection.IsReadOnly())
configuration.Save();
' 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
Applies to
See also
Συνεργαστείτε μαζί μας στο GitHub
Μπορείτε να βρείτε την πηγή για αυτό το περιεχόμενο στο GitHub, όπου μπορείτε επίσης να δημιουργήσετε και να εξετάσετε ζητήματα και αιτήματα έλξης. Για περισσότερες πληροφορίες, ανατρέξτε στον οδηγό συνεργατών.