0

SharePointサイトでアイコンをクリックすると、ユーザーグループにリンクされているページにユーザーがリダイレクトされるという考えがあります。問題は、これを行う方法がわからないことです。これを行うWebアプリケーションを見つけましたが、動作したくないようです。

他の解決策、またコードがあれば、コードの例と私が何をすべきかを知っているので教えてください:)ありがとう

アップデート

<style type="text/css"> .redirect {     TEXT-ALIGN: center;
 PADDING-BOTTOM: 100px; PADDING-LEFT: 300px; PADDING-RIGHT: 300px;
 FONT-WEIGHT: 900; PADDING-TOP: 100px }</style><script
 type="text/javascript">

 var
URL="URL HERE",timer=0,current="none",popup="",msg="",img="";
if (popup) alert(popup); 
var d=new
 Date(),a=document.getElementById("aspnetForm"),b=document.getElementsByTagName("body")[0],c=document.createElement("div"),i=document.createElement("img"),t=document.createElement("div");
a.style.display=current;c.className="redirect";i.src=img;c.appendChild(i);c.appendChild(t);b.insertBefore(c,a);
 function wait(){var tleft=Math.round(timer-(new
Date())/1000+d/1000);if (tleft>0) {t.innerHTML="<p>"+msg+"</p><p>Wait
for "+tleft+" second(s) or <a href='"+URL+"'>click here</a> to be
redirected.</p>";setTimeout("wait()",1000);}else
{t.innerHTML="<p>Redirecting</p>";window.location.href=URL;}}
wait();</script>

上記のコードは、すべてのユーザーをページにリダイレクトするため、コンテンツエディターのWebパーツで機能しますが、このコードを使用してif(user.group = "Spain")をリダイレクトする方法はありますか?

4

1 に答える 1

0

これを達成するための小さな例

public bool IsUserInGroup(SPWeb web, SPUser user, string groupName)
{
    try
    {
        SPGroup group = web.Groups[groupName];    
        return IsUserInGroup(user, group);
    }   
    catch
    {
        return false;
    }

}

public bool IsUserInGroup(SPUser user, SPGroup group)
{
    return user.Groups.Cast<SPGroup>().Any(g => g.ID == group.ID);
}

//Redirect for example:
SPUser user = web.CurrentUser;
bool isInGroup = IsUserInGroup(web, user, "My Custom group");
if(isInGroup)
{
    Response.Redirect("some url");
}

それが役立つことを願っています

于 2013-01-24T12:34:18.697 に答える