Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何人都可以指导我使用 C# 以编程方式创建表单库。这用于发布 infopath 表单。创建表单库后,我需要将完全受信任的文件(.xsn 文件)添加到该特定库的 FORM 文件夹中。
在这里找到:
SPWeb web = ... SPListTemplateType templateType = SPListTemplateType.XMLForm; Guid listId = web.Lists.Add("MyFormLibrary", null, templateType); SPList documentLibrary= web.Lists[listId];
本文介绍如何上传文件。