2010-04-06 1 views
1

내 맞춤 웹 파트에 동료를 표시하려고합니다. 그래서 나는 각 동료에게 존재 아이콘을 추가했다. 동료가 1 인 경우 잘 보이고 있습니다. 동료가 1 명 이상일 경우 존재 아이콘이 1 번째 동료에게 표시됩니다.이 아이콘은 다른 동료에게도 표시 될 수 있지만 단순한 Presense 아이콘 (회색조)이 표시됩니다 (드롭 다운이 아닙니다).존재 아이콘 만 첫 번째 사람에게 표시

코드는 다음과 같습니다.

private static Panel GetUserInfo(UserProfile profile,Panel html, int cnt) 
    { 
     LiteralControl imnrc = new LiteralControl(); 
     imnrc.Text = "<span style=\"padding: 0 5px 0 5px;\"><img border=\"0\" valign=\"middle\" height=\"12\" width=\"12\" src=\"/_layouts/images/imnhdr.gif\" onload=\"IMNRC('" + profile[PropertyConstants.WorkEmail].Value.ToString() + "')\" ShowOfflinePawn=1 id=\"IMID[GUID]\" ></span>"; 

     html.Controls.Add(imnrc); html.Controls.Add(GetNameControl(profile)); //html.Controls.Add(new LiteralControl("<br>")); 


     return html; 
    } 

private static Control GetNameControl(UserProfile profile) 
    { 
     //bool hasMySite = profile[PropertyConstants.PublicSiteRedirect].Value == null ? false : true; 
     bool hasMySite =string.IsNullOrEmpty(profile.PublicUrl.ToString()) ? false : true; 
     string name = profile[PropertyConstants.PreferredName].Value.ToString(); 

     if (hasMySite) 
     { 
      HyperLink control = new HyperLink(); 
      control.NavigateUrl = String.IsNullOrEmpty(profile.PublicUrl.ToString()) ? null : profile.PublicUrl.ToString(); 
      control.Style.Add("text-decoration","none"); 
      control.Text = name; 
      return control; 
     } 
     else 
     { 
      LiteralControl control = new LiteralControl(); 
      control.Text = name; 
      return control; 
     } 
    } 

http://i700.photobucket.com/albums/ww5/vsrikanth/presence-1.jpg

답변

3

귀하의 IMG 그것에 고유 ID 세트를 가질 필요가있다. 당신이 대신하려고 그것을 값 "IMID[GUID]"

을 할당하여, 거의 있었다 것 같습니다 :

imnrc.Text = "<span style=\"padding: 0 5px 0 5px;\"><img border=\"0\" valign=\"middle\" height=\"12\" width=\"12\" src=\"/_layouts/images/imnhdr.gif\" onload=\"IMNRC('" + profile[PropertyConstants.WorkEmail].Value.ToString() + "')\" ShowOfflinePawn=1 id=\"IMID" + Guid.NewGuid().ToString() + "\" ></span>";