[WSS 3.0] Using C# to Create Custom List
在 MSDN 上找到用 C# 新增一個 Custom List 在 MOSS 2007 上面的一段程式碼如下(註1):
SPSite siteCollection = SPContext.Current.Site;
SPWeb mySite = SPContext.Current.Web;
SPListTemplateCollection listTemplates = siteCollection.GetCustomListTemplates(mySite);
SPListTemplate listTemplate = listTemplates["Custom List Template"];
mySite.Lists.Add("Custom List", "A list created from a custom list template in the list template catalog", listTemplate);但是我在第4列的時候就已經出錯了,
經查詢之後得知在第3列 GetCustomListTempLates 得到的結果 listTemplates 的 Template count 就已經是0了
所以後來改以 SPTemplateType 的方法解決,整列程式碼也精簡成2列:
SPWeb mySite = SPContext.Current.Web;
mySite.Lists.Add("Custom List", "A list created from a custom list template
in the list template catalog", SPListTemplateType.GenericList);SPListTemplateType 的意思及代碼如下:
| InvalidType = -1 | Not used. |
| GenericList = 100 | Custom list |
| DocumentLibrary = 101 | Document library |
| Survey = 102 | Survey |
| Links = 103 | Links |
| Announcements = 104 | Announcements |
| Contacts = 105 | Contacts |
| Events = 106 | Calendar |
| Tasks = 107 | Tasks |
| DiscussionBoard = 108 | Discussion board |
| PictureLibrary = 109 | Picture library |
| DataSources = 110 | Data sources for a site |
| WebTemplateCatalog = 111 | Site template gallery |
| UserInformation = 112 | User Information |
| WebPartCatalog = 113 | Web Part gallery |
| ListTemplateCatalog = 114 | List template gallery |
| XMLForm = 115 | XML Form library |
| MasterPageCatalog = 116 | Master Page gallery |
| NoCodeWorkflows = 117 | No Code Workflows |
| WorkflowProcess = 118 | Custom Workflow Process |
| WebPageLibrary = 119 | Wiki Page Library |
| CustomGrid = 120 | Custom grid for a list |
| DataConnectionLibrary = 130 | |
| WorkflowHistory = 140 | Workflow History |
| GanttTasks = 150 | Project Tasks |
| Meetings = 200 | Meeting Series (Meeting) |
| Agenda = 201 | Agenda (Meeting) |
| MeetingUser = 202 | Attendees (Meeting) |
| Decision = 204 | Decisions (Meeting) |
| MeetingObjective = 207 | Objectives (Meeting) |
| TextBox = 210 | Text Box (Meeting) |
| ThingsToBring = 211 | Things To Bring (Meeting) |
| HomePageLibrary = 212 | Workspace Pages (Meeting) |
| Posts = 301 | Posts (Blog) |
| Comments = 302 | Comments (Blog) |
| Categories = 303 | Categories (Blog) |
| IssueTracking = 1100 | Issue tracking |
| AdminTasks = 1200 | Administrator Tasks |