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.
寻找一段代码。
当列是用户类型时,SP 使用“人员选择器”控件
因此,以下代码段将添加一个这样的列:
using (SPWeb oWebsite = SPContext.Current.Site.AllWebs["MySite"]) { SPFieldCollection collFields = oWebsite.Lists["MyList"].Fields; collFields.Add("MyField", Microsoft.SharePoint.SPFieldType.User, false); }