SiteMapPath 在子页面上消失
由于某种原因,我的页面上的 SiteMapPath 消失了。
站点结构:
WebApp
-Default.aspx
-> Reports\
----Default.aspx
----MyReport.aspx
Web.sitemap
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="~/Default.aspx" title="Overview" description="Overview">
<siteMapNode url="~/Reports/Default.aspx" title="Reports" description="Reports" >
<siteMapNode url="~/Reports/MyReport.aspx" title="MyReport" description="MyReport" />
</siteMapNode>
</siteMapNode>
</siteMap>
当我位于报告页面的概述页面而不是 MyReport 页面时,将显示 SiteMapPath。 通过将站点地图绑定到树视图,我可以正确地看到所有节点。
有效 - 在 MyReport 页面上显示我
<asp:TreeView ID="TreeView1" runat="Server" DataSourceID="SitePathDataSource">
</asp:TreeView>
在 MyReport 页面上消失,但在所有其他页面上可见
<asp:SiteMapPath ID="SiteMapPath1" runat="server" DataSourceID="SitePathDataSource">
</asp:SiteMapPath>
For some reason on my page my SiteMapPath disappears.
Site structure:
WebApp
-Default.aspx
-> Reports\
----Default.aspx
----MyReport.aspx
Web.sitemap
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="~/Default.aspx" title="Overview" description="Overview">
<siteMapNode url="~/Reports/Default.aspx" title="Reports" description="Reports" >
<siteMapNode url="~/Reports/MyReport.aspx" title="MyReport" description="MyReport" />
</siteMapNode>
</siteMapNode>
</siteMap>
The SiteMapPath will display when I'm on the overview page of the reports page but not the MyReport page. With the sitemap bound to a treeview I see all of my nodes correctly.
Works - shows me on MyReport Page
<asp:TreeView ID="TreeView1" runat="Server" DataSourceID="SitePathDataSource">
</asp:TreeView>
Disappears on MyReport Page but visible on all others
<asp:SiteMapPath ID="SiteMapPath1" runat="server" DataSourceID="SitePathDataSource">
</asp:SiteMapPath>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不完全是这方面的专家。 我刚刚在我的页面上测试了它,效果很好。 我所做的和你所做的唯一区别是我没有在父节点上指定文件名。 尽管我偶然发现了这一点,因为我无法在站点地图中出现两次相同的路径。
I'm not exactly an expert on this. I did just test it on my pages and it worked fine. The only difference between what I am doing and yours is I am not specifying a filename on the parent node. Although I kind of stumbled into that one because I couldn't have the same path twice in my sitemap.
当控件未显示时,浏览器中的 URL 是什么? 我敢打赌您有一个查询字符串值或与 Reports/Myreport.aspx 不匹配的内容。 如果页面的路径与站点地图节点中的项目不完全匹配,则它将不会显示。
What is the URL in your browser when the control is not displayed? I'd bet that you have a querystring value or something that does not match Reports/Myreport.aspx. If the path of the page does not match an item exactly in the sitemapnode it won't display.
页面的 page_load 中分配站点地图提供程序
在web.config 内
Assign sitemap provider in page_load of page
inside web.config