我有一个MOSS 2007网站。我想显示当前用户的显示图像(或头像,无论你怎么称呼它)。
感谢。
P.S。通过显示图像,我正在谈论用户上传到MySite的图像。
答案 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"/>