分享
 
 
 

使用asp.net2.0中的SiteMap中的一些问题

王朝asp·作者佚名  2008-05-19
窄屏简体版  字體: |||超大  

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文件,递归获取所有数据定义。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有