SPWeb.Update method

Updates the database with changes that are made to the website.

Namespace:  Microsoft.SharePoint
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'Declaration
Public Sub Update
'Usage
Dim instance As SPWeb

instance.Update()
public void Update()

Remarks

If the value of any of the properties of the SPWeb object has changed, this method saves the values of all properties to the database.

Examples

The following code example uses the Update method to change the title of a specified site in the current site collection.

Using webSite As SPWeb = SPContext.Current.Site.OpenWeb("Site_Name")
    webSite.Title = "New_Site_Name"
    webSite.Update()
End Using
using (SPWeb oWebsite = SPContext.Current.Site.OpenWeb("Website_URL"))
{
    oWebsite.Title = "My New Title";
    oWebsite.Update();
}

Note

Certain objects implement the IDisposable interface, and you must avoid retaining these objects in memory after they are no longer needed. For information about good coding practices, see Disposing Objects.

See also

Reference

SPWeb class

SPWeb members

Microsoft.SharePoint namespace

AllProperties