程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 使用asp.net2.0中的SiteMap中的一些問題

使用asp.net2.0中的SiteMap中的一些問題

編輯:.NET實例教程
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 隨心所欲
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved