是否可以像在SharePoint中一样显示活动目录信息弹出窗口

时间:2012-11-18 23:27:06

标签: asp.net sharepoint active-directory

在SharePoint中,当您将鼠标悬停在某个用户的名称上时会出现一个弹出窗口,其中包含来自AD的详细信息,就像在Outlook中一样......

AD Popup

这是如何完成的,是否可以在我自己的ASP.NET网站中使用SharePoint必须执行的操作?我们有一个内联网员工,我想这样做。

1 个答案:

答案 0 :(得分:1)

您可以复制javascript directly from the SharePoint page,例如

<script type="text/javascript" src="http://sharepointsite/_layouts/1033/init.js">
</script>
<script type="text/javascript" src="http://sharepointsite/_layouts/1033/core.js">
</script>
<style type="text/css">
img.presenceIndicator
{
   border-style:None;
   height:12px;
   width:12px;
   border-width:0px;
   vertical-align: middle
}
</style>
<span>
   <img id="uniqueID" onload="IMNRC('jadams@example.com', 
   getElementById('uniqueID'))" ShowOfflinePawn="1" 
   src=http://sharepointsite/_layouts/images/blank.gif 
   class="presenceIndicator"/>

   <a href="someCustomUserProfilePage.aspx?UserID=adamsjl">Adams, Jacob L.</a>
</span>

,或使用these codeplex controls