SiteMap,網站地圖,在網站建置的時候是很有用的。它可以直接綁定在Men和TreeView控件上,還有一個指示當前路徑的SiteMapPath控件,也可以直接綁定。
這是他常用的xml定義:
<siteMapNode url="Course/Group/GroupList.aspx" title="GroupAdmin" >
這個SiteMap的權限已經和Membership結合了,不同權限的使用者所看到的地圖已經被控制了。可以配置role屬性來擴充例外的存取許可。注意,是例外的訪問許可。
<siteMapNode url="Course/Tests/TestList.aspx" title="TestAdmin" role="student">這裡有些介紹: http://zmsx.cnblogs.com/archive/2006/01/03/310381.aspx
簡單的使用這裡不作贅述,只是討論一下怎麼和擴充一下,讓他可以存取資源時附帶參數。
首先介紹這樣一個資源:MySiteMapTool: http://quitgame.cnblogs.com/archive/2005/11/24/283910.aspx
這位仁兄已經提供了一個工具,可以在程式中轉送帶參數的請求例如: MySiteMap.Forward("Details", "AlbumID={0}&Page={1}", 1, 4);
的確是簡單實用。
現在想要的功能是:因為各個液面都需要不同的參數,所以在沒有這些參數的情況下就禁止用戶訪問那個頁面,轉而訪問父一級頁面,遞歸。
首先,SiteMap本身有SiteMapResolve事件,在目前路徑被解析時觸發,這是一段來自MSDN的程式碼
private void Page_Load(object sender, EventArgs e)
{
// The ExpandForumPaths method is called to handle
// the SiteMapResolve event.
SiteMap.SiteMapResolve +=
new SiteMapResolveEventHandler(this.ExpandForumPaths);
}
private SiteMapNode ExpandForumPaths(Object sender, SiteMapResolveEventArgs e)
{
// The current node represents a Post page in a bulletin board forum.
// Clone the current node and all of its relevant parents. This
// returns a site map node that a developer can then
// walk, modifying each node.Url property in turn.
// Since the cloned nodes are separate from the underlying
// site navigation structure, the fixups that are made do not
// effect the overall site navigation structure.
SiteMapNode currentNode = SiteMap.CurrentNode.Clone(true);
SiteMapNode tempNode = currentNode;
// Obtain the recent IDs.
int forumGroupID = GetMostRecentForumGroupID();
int forumID = GetMostRecentForumID(forumGroupID);
int postID = GetMostRecentPostID(forumID);
// The current node, and its parents, can be modified to include
// dynamic querystring information relevant to the currently
// executing request.
if (0 != postID)
{
tempNode.Url = tempNode.Url + "?PostID=" + postID.ToString();
}
if ((null != (tempNode = tempNode.ParentNode)) &&
(0 != forumID))
{
tempNode.Url = tempNode.Url + "?ForumID=" + forumID.ToString();
}
if ((null != (tempNode = tempNode.ParentNode)) &&
(0 != forumGroupID))
{
tempNode.Url = tempNode.Url + "?ForumGroupID=" + forumGroupID.ToString();
}
return currentNode;
}
這段程式碼只是給當前路徑載入參數。
曾經嘗試過使用類似的方法,但SiteMapPath搞定了,Menu就綁定不上資料了。並且只能處理一部分資料。
後來,結合SiteMapTool那個類,又寫出幾個函數可以解決這個問題這是修改之後的sitemap文件,加了一個配置項:rule,裡面的參數是這個頁面需要的參數。如果目前上下文沒有這些參數,那麼禁止使用者造訪這個頁面。
<siteMapNode url="Course/Group/GroupDetail.aspx" title="Group Detail" rule="cid;gid">
這是兩個函數,遞歸處理所有的路徑。 private string MakeURL(SiteMapNode node)
{
node.ReadOnly = false;
//find the static url
string url = MySiteMap.FindForward(node.Title);
if (node["rule"] != null && node["rule"].Length > 0)
{
//if have the rule,then check
string[] paramSet = node["rule"].Split(';');
//check
for (int i = 0; i < paramSet.Length; i++)
{
//if request have not such a param, then invoke self to check his parent
if (HttpContext.Current.Request.Params[paramSet[i]] == null)
return MakeURL(node.ParentNode);
}
//if pass ,then add all the params and return the value
url += "?";
for (int i = 0; i < paramSet.Length; i++)
{
string key = paramSet[i];
//'cid'--->'cid=1'. the former format is like : rule='cid;tid'
url = url + key + "=" + HttpContext.Current.Request.Params[key] + "&";
}
return url.Substring(0, url.Length - 1); //remove last '&'
}
else
{
//if there is no rule then return the url directly
return url;
}
} private void ReBindData(SiteMapNode root)
{
string url = MakeURL(root);
if (url != "")
root.Url = url;
for (int i = 0; i < root.ChildNodes.Count; i++)
{
ReBindData(root.ChildNodes[i]);
}
}在ReBindData裡面遞歸呼叫MakeUrl函數。
MakeUrl函式裡面所呼叫的MySiteMap.FindForward函數就是來自那位http://quitgame.cnblogs.com/archive/2005/11/24/283910.aspx的實作。
不過應用的是後需要做一些改動:他原來的實作是用靜態的類別如此載入
//SiteMapNodeCollection smc = SiteMap.RootNode.GetAllNodes();
//siteMapCol = new NameValueCollection();
//IEnumerator ie = smc.GetEnumerator();
//while (ie.MoveNext())
//{
// siteMapCol[((SiteMapNode)ie.Current).Title] = ((SiteMapNode)ie.Current).Url;
//}但是,由於使用者在沒有登陸的時候,限於權限,它能存取的頁面有限,所以SiteMap.RootNode.GetAllNodes();得到的不是所有數據,可能只是一部分或0。
改動方式就是自己寫一個函數,直接讀取xml文件,遞迴取得所有資料定義。
出處:BLOG 隨心所欲