我正在构建一个 Windows 应用程序,将文档上传到共享点文档库并修改其列。
我的问题是我正在将文件上传到具有人员编辑器列的文档库。
为了解决我的问题,我想弹出一个包含人员编辑器的 Windows 表单,以便用户可以选择用户或组来填写该列。
如何创建一个像 sharepoint 中的人物编辑器?
我正在构建一个 Windows 应用程序,将文档上传到共享点文档库并修改其列。
我的问题是我正在将文件上传到具有人员编辑器列的文档库。
为了解决我的问题,我想弹出一个包含人员编辑器的 Windows 表单,以便用户可以选择用户或组来填写该列。
如何创建一个像 sharepoint 中的人物编辑器?
在您的 asp.net 页面中,您可以像这样简单地拥有 PeopleEditor 控件:
<%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<SharePoint:PeopleEditor runat="server" ID="peopleEditor"
AutoPostBack="true" AllowEmpty="false" SelectionSet="User,SecGroup,SPGroup"
BorderWidth="1" PlaceButtonsUnderEntityEditor="false" Rows="1" />
You could have a read-only RichTextBox to display the names, and have a ListBox or something showing the names of people from your domain. You can use classes from the System.DirectoryServices.ActiveDirectory namespace to do Active Directory lookups. This is meant to replace the old LDAP queries that were very tedious in getting names from Active Directory. I haven't used it yet, but I hear it's pretty simple to work with.