在SharePoint中,当您将鼠标悬停在某个用户的名称上时会出现一个弹出窗口,其中包含来自AD的详细信息,就像在Outlook中一样......
这是如何完成的,是否可以在我自己的ASP.NET网站中使用SharePoint必须执行的操作?我们有一个内联网员工,我想这样做。
答案 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>