Main menu item does not go to url

  • Thread starter Thread starter active
  • Start date Start date
A

active

the menu

Home
Products
Hardware
Software
Services
Training
Consulting
Supportcan be created from:
<siteMap>
<siteMapNode title="Home" url="~/default.aspx">
<siteMapNode title="Products" url="~/Products.aspx">
<siteMapNode title="Hardware" url="~/Hardware.aspx" />
<siteMapNode title="Software" url="~/Software.aspx" />
</siteMapNode>
<siteMapNode title="Services" url="~/Services.aspx">
<siteMapNode title="Training" url="~/Training.aspx" />
<siteMapNode title="Consulting" url="~/Consulting.aspx" />
<siteMapNode title="Support" url="~/Support.aspx" />
</siteMapNode>
</siteMapNode>
</siteMap>Suppose I want the above except that clicking Products does not
have any effect.That is the user must select Hardware or Software but not
Products.I've tried removing the url and also tried url="" but those remove
Products from the menu.Do you know how to do that?


thanks
 
the menu

Home
Products
Hardware
Software
Services
Training
Consulting
Supportcan be created from:
<siteMap>
<siteMapNode title="Home" url="~/default.aspx">
<siteMapNode title="Products" url="~/Products.aspx">
<siteMapNode title="Hardware" url="~/Hardware.aspx" />
<siteMapNode title="Software" url="~/Software.aspx" />
</siteMapNode>
<siteMapNode title="Services" url="~/Services.aspx">
<siteMapNode title="Training" url="~/Training.aspx" />
<siteMapNode title="Consulting" url="~/Consulting.aspx" />
<siteMapNode title="Support" url="~/Support.aspx" />
</siteMapNode>
</siteMapNode>
</siteMap>Suppose I want the above except that clicking Products does not
have any effect.That is the user must select Hardware or Software but not
Products.I've tried removing the url and also tried url="" but those remove
Products from the menu.Do you know how to do that?

thanks

I think, it always has to be with a link
 
Alexey Smirnov said:
I think, it always has to be with a link
Not like Windows where you can click File, for example, and you then get a
chance to click a menu item.

Thanks for the info
 
Back
Top