如何使用 ASP.NET MVC SiteMap 提供程序隐藏节点

发布于 2024-12-05 04:34:29 字数 698 浏览 0 评论 0原文

我有这样的节点,我想在用户通过身份验证时隐藏它。

我如何使用 ASP.NET MVC SiteMap 提供程序来做到这一点?

我尝试过:

http://mvcsitemap.codeplex.com/discussions/246986

但后来我出现错误:

Value cannot be null.
Parameter name: type 
 Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

 Exception Details: System.ArgumentNullException: Value cannot be null.
Parameter name: type

Source Error: 

Line 114:               @Html.MvcSiteMap("MvcSiteMapProvider").Menu()

I have such node which i want to hide when user is authenticated.

How can i do that with ASP.NET MVC SiteMap provider?

I tried that:

http://mvcsitemap.codeplex.com/discussions/246986

but then i am getting an error:

Value cannot be null.
Parameter name: type 
 Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

 Exception Details: System.ArgumentNullException: Value cannot be null.
Parameter name: type

Source Error: 

Line 114:               @Html.MvcSiteMap("MvcSiteMapProvider").Menu()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

高速公鹿 2024-12-12 04:34:29

您可以通过指定 Roles="?" 来对经过身份验证的用户隐藏节点。在您的节点中:

You can make your node hidden for authenticated users by specifying roles="?" in your node:

<mvcSiteMapNode controller="HomeController" action="Index" title="Home" roles="?"/>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文