Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用 SiteMapPath 时,这个错误是什么。当我单击我网站中的一个链接时,此错误出现在页面中。当然,当我上传我的网站时,我看到了这个错误:
找不到页面 您要查找的页面可能已被删除、名称已更改或暂时不可用。
根据该错误,您的SiteMap中的 URL 似乎不是相对的。例如,假设您有一个名为“Example”的子目录和一个位于该“Example”目录中的名为“test.aspx”的页面。此条目将产生 404 错误(找不到页面)。
<siteMapNode url="Test.aspx" title="Test Page" />
这将是正确的 siteMapNode 条目:
<siteMapNode url="~/Example/Test.aspx" title="Test Page" />