How to Delete SPView

Sharepoint Object model doesn't have any SPView.Delete method to delete view.

If you want to delete SPView, you have to delete from SPList.

void DeleteView(SPList list, SPView view)
{
     list.Views.Delete(view.ID);
     list.Update();
}

Comments

Popular posts from this blog

Windows Azure Package Build Error: The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters.

Resource ID : 1. The request limit for the database is 180 and has been reached.

Update Excel Sheet using C#, Where Excel not Installed on Server