How to Delete SubSite of Selected Site….
Hi… This Code deletes the selected subsite of a site….. check it out very helpful
Dim
res As DialogResult Dim strwebname As String = "" Tryres = MessageBox.Show(
"Are you sure you want to delete subsite " + Selrootweb.ToString, "Confirmation", MessageBoxButtons.YesNo, MessageBoxIcon.Question) If (res = Windows.Forms.DialogResult.Yes) Thenstrwebname = spsite.OpenWeb.Name.ToString
selweb =
New Uri(TvSites.SelectedNode.Parent.Text.ToString)spsite =
New SPSite(selweb.ToString)spsite.OpenWeb.Webs(strwebname.ToString).Delete()
MessageBox.Show(
"Deleted Successfully", "SubSite Deleted", MessageBoxButtons.OK, MessageBoxIcon.Information) Else Me.Hide() Dim frmmain As New frmExplorerfrmmain.Show()
End If Catch ex As ExceptionMessageBox.Show(
"Cannot deleted site that contains subsites", "SubSite NOT Deleted", MessageBoxButtons.OK, MessageBoxIcon.Error) End Try- Posted in: SharePoint
Recent Comments