如何在Sharepoint中获取当前用户显示图像?

时间:2010-02-11 07:44:52

标签: sharepoint sharepoint-2007 avatar

我有一个MOSS 2007网站。我想显示当前用户的显示图像(或头像,无论你怎么称呼它)。

  1. 是否可以不编写新的Web部件?我没有安装任何MOSS 2007安装的计算机,所以我不能为Sharepointç开发Web部件(或者至少我认为)
  2. 感谢。

    P.S。通过显示图像,我正在谈论用户上传到MySite的图像。

1 个答案:

答案 0 :(得分:6)

您有/SharedServicesPath/Person.aspx文件中的信息,我们通常这样做:
页面顶部:

<%@ Register tagprefix="SPSWC" namespace="Microsoft.SharePoint.Portal.WebControls" assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>

在实际图像点:

<SPSWC:ProfilePropertyLoader runat="server" />
<SPSWC:ProfilePropertyImage PropertyName="PictureUrl" ResizeToFit="100" ShowPlaceholder="true" id="PictureUrlImage" runat="server"/>