asp.net menu控件运行后不显示子菜单

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp.net menu控件运行后不显示子菜单相关的知识,希望对你有一定的参考价值。

我的menu控件无论怎样设置,运行后就是不显示子菜单?

参考技术A menu菜单
你设置了根没有?
参考技术B 我也遇到了这个问题呢...惆怅中

左侧导航怎么实现,ASP.NET

2个问题!感谢广大的开发者帮助!
1.导航,我写的导航总是要跳转到别的页面,看好了多网站,都是直接在主页显示的。
比如说:我的导航上面有:主页|产品|联系我们|
每次我点了之后他就从新到了一个新的页面!能不能就在本网页显示!
2.那个左侧导航用什么控件?如果鼠标移动倒左侧导航上去,那么可以直接在后面显示出他的子菜单,不用点击的那种
谢谢啦
1.就是说我的网站分了3个块,上面是导航,左侧也是导航,中间主要就是显示信息,如果我点上面的导航,他就会跳转出来一个页面,来显示信息。我想就在原来的那块显示信息,而不跳转倒其他页面

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>财务分析系统</title>
</head>
<frameset rows="100,*" cols="*" frameborder="YES" border="0" framespacing="0" >
<frame src="common/top.aspx" name="topFrame" scrolling="NO" noresize > //顶部页面
<frameset rows="*" cols="186,*" framespacing="0" frameborder="NO" border="0">
<frame src="common/menu.aspx" name="leftFrame" scrolling="NO" noresize> //左侧页面
<frameset rows="*,20" cols="*" framespacing="0" frameborder="NO" border="0">
<frame src="common/blank.aspx" name="mainFrame" scrolling="YES"> //中间主页面
<frame src="common/foot.aspx" name="footFrame" scrolling="NO"> //底部页面
</frameset>
</frameset>
</frameset>

<body>
<form id="form1" runat="server">
</form>
</body>
</html>
src 是每个框架中的页面路径

---------------------------------------------------
这是一树的节点,我只举一个节点的例子.楼主看懂了就好了
<asp:TreeView ID="TreeView_Show" runat="server" ShowExpandCollapse="False" ImageSet="BulletedList" Height="234px" Width="109px" >
<Nodes>
<asp:TreeNode Text="详细信息" Value="Message" ImageUrl="~/image/hy.gif">
<asp:TreeNode Target="mainFrame" Text="资产负债" Value="Message_Show" ImageUrl="~/image/icon_personaloffice_16.gif" NavigateUrl="~/UI/Message/Balance_Sheet.aspx">
</asp:TreeNode>
</asp:TreeNode>
</Nodes>
</asp:TreeView>
注意上面的<asp:TreeNode Target="mainFrame" Text="资产负债" 这句中的Target="mainFrame" 该节点的导航目标定位于 mainFrame的页面框架里面了也就是 <frame src="common/blank.aspx" name="mainFrame" scrolling="YES"> //中间主页面
当然你这个有树的导航页面 要么是<frame src="common/menu.aspx" name="leftFrame" scrolling="NO" noresize> //左侧页面
或者是顶部页面
参考技术A 1.这个问题很简单.听你的意思是.你的导航是超链接么?
<a>标签有个属性 target.如果target=_blank.那么就会弹出新页面.如果target=_self或者不要target属性.那么新页面就在本网页显示.

2.我没听懂你的意思..不过好像大概意思是说用<div>做的onmouseover事件吧?写js.
参考技术B 1.如贰壹肆伍捌 所讲,

也可以考虑用frame

2。这个你自己搜索一下 “纯css菜单“
参考技术C 可以采用HTML里面的锚点来实现啊!左侧设置链接到一个锚点,把右边内容设置为一个锚点。然后_target="_self"。就搞定了哇! 参考技术D Menu可以,使用站点地图,就可以达到你的要求。直接Menu绑定站点地图。什么都不用写就可以解决你的所有问题。(导航最好使用模版页) 第5个回答  2008-06-01 可以用DataList!

以上是关于asp.net menu控件运行后不显示子菜单的主要内容,如果未能解决你的问题,请参考以下文章

asp.net menu控件菜单项的间距如何调?

没有子菜单的wordpress导航菜单

asp.net框架页菜单控件无法正常显示

UI控件之菜单(Menu)

ASP.NET中控件dropdownlist下拉菜单选择不同项显示不同的图片

如何在母版页菜单中突出显示活动页面?