在SharePoint 2007中更改人员选取器范围(用于解析实体)

时间:2011-01-18 15:17:10

标签: c# sharepoint sharepoint-2007 wss

我有一个自定义应用程序页面test.aspx。我在test.aspx中有一个人选择器。

我使用网址http://site01/_layouts/test.aspx打开页面,我希望人员选择器解析网站http://site02中的SharePoint群组。

默认情况下,人员选择器会解析属于当前网站集的实体。如何将范围更改为其他网站集?

2 个答案:

答案 0 :(得分:0)

我认为您需要在类中手动创建一个常量字符串,并指定要从中检查人员选择器用户实体的静态URL。

代表:

public constant string url =“http:// site02”;

SPSite site = new SPSite(url);

希望这会有所帮助。

答案 1 :(得分:0)

我想它无法完成。我在研究人员选择器范围时所得到的就是这个 - http://www.sharepointblues.com/2010/08/30/limiting-people-picker-scope-in-sharepoint/