Is there a way to easily duplicate a list code wise?
|
1
|
|
|
|
|
|
Judging from the SharePoint tag, I'm assuming you meant to ask "How do I copy a SharePoint list (SPList) programmatically?"
Also, here's a link to a blog post that achieves the same accross web applications. And finally a word of advice: you'll get better search results if you use "programmatically" instead of "code wise". Hope this helps. |
||
|
|
|
|
Are you looking for this?
Just substitute the blank list "a" for your actual list that you want to copy |
||||
|
|
|
Hi, I am trying the same code but facing some problem. When I save the list as tempate it comes under the folder _catalog\lt at the root site, but I am not able to find the same programatically. Can you help me on this. SPSite siteColl = new SPSite(SPContext.Current.Web.Site.ID); if (siteColl.RootWeb.GetFile("_catalogs/lt/" + "DecisionTaskTemplate.stp").Exists) { siteColl.RootWeb.Lists [GlobalResources.Resources.ListTemplateGalleryName].RootFolder.Files[ "DecisionTaskTemplate.stp"].Recycle(); } SPContext.Current.Web.Lists["Decision Task " + cashedFile.Name.Replace(".aspx","")].SaveAsTemplate("DecisionTaskTemplate.stp","DecisionTaskTemplate", "Template", true); SPContext.Current.Web.Lists["Decision Task " + cashedFile.Name.Replace(".aspx", "")].Update(true); SPContext.Current.Web.Update(); } } SPSite globalSiteColl = new SPSite(SPContext.Current.Web.Site.ID); foreach (SPListTemplate listTemplate in globalSiteColl.GetCustomListTemplates(globalSiteColl.RootWeb)) { if (listTemplate.Name.Equals("DecisionTaskTemplate.stp")) { SPContext.Current.Web.Lists.Add("Decision Task " + addedFile.Name.Replace(".aspx", ""), "Decision Task " + addedFile.Name.Replace(".aspx", ""), listTemplate); } } |
||
|
|
