English 中文(简体)
如何在左边展示主要菜单的儿童物品
原标题:how to display in a left menu the child items of main menu

我想建造一个有两名男子的场址。 第一个菜单将排在顶部,第二个菜单将放在左侧。

What I am looking for is how to show the child items in the left pane.

例如,用一个名为“试验”的网页,它把“试验PageChild1”和“试验PageChild2”作为儿童菜单,我想在左侧展示这些孩子。

How could I do this?

如果还有另一种方式可以实施,请让我知道。

增 编

最佳回答

你可以与你的菜单一起这样做,或者你能够用一个照亮点的单元这样做。 “console”模块也是一种选择,它将提供与任何页面点的儿童的联系。

As for doing it within the skin, using the Menu, you need to adjust the "Level" attribute of the Navigation control.

<%@ Register TagPrefix="dnn" TagName="NAV" Src="~/Admin/Skins/Nav.ascx" %>
<dnn:NAV id="TopLevel" runat="server" Level="Root" />
<dnn:NAV id="Child" runat="server" Level="Child" />

因此,

问题回答

What you need is a child links module. You simply add it to the left pane and then configure it to show subpages of the current page. I usually use Ventrian s http://www.ventrian.com/Products/Modules/ChildLinks.aspx. But there are a number of others available, including a free one http://dnnmodules.cn/Modules/Childpagelistfree.aspx.

http://www.dnnsoftware.com/wiki/ddrmenu-user-guide”rel=“nofollow” http://www.dnnsoftware.com/wiki/ddrmenu-user-guide

i ve tried to set my module to NodeSelector="RootChildren" and i worked.





相关问题
How do you alter the page_load for DotNetNuke

For the main menu, I want the first four links to be blue, and specifically the last four links to be yellow. There will only be eight menu items. I was thinking of hard coding the yellow links into ...

ASP.NET MVC project to port [closed]

Is there a project out there that attempts to replicate or re-create a portal framework like DotNetNuke using MVC framework

how to install dnn (v 5.2.0) in vs (any of 2005 or 2008)?

i need to install DNN on my pc. I dont mind what dotnet version this would be: either 2005 or 2008 but i need to install DNN v 5.x.y and not any previous installation + also need to configure in my ...

dotnetnuke doubts

i want to build a website in dnn 5. i have studied dnn5, its installation, starter-kit installation, built-in modules (both of Host and Admin), installing a custom module (from module extension), ...

Develop a Family Tree Portal with several functinality

We need to develop a family tree portal which also supports functinality like Portal Framework (Sub portal) Dashboard Blogs, Forums, Events, Polls, Task Member subscription Advertisement Chat ...

Domain Name Windows Vista Does Not Exist In The Database

I am trying to install DOTNETNUKE model on my local machine ( Windows Vista) but seem to be running into a problem right after installing the Database. Not exactly sure where to go to fix the problem ...

Find all CSS styles used on website

I have a DotNetNuke skin that has a single CSS file over 3,500 lines long. It contains styles for YUI, Telerik, Cluetip as well as the actual customisation of the site. The old developers just kept ...

热门标签