# ASP.NET and Menu navigation control

**URL:** https://forum.kirupa.com/t/asp-net-and-menu-navigation-control/251430
**Category:** programming
**Created:** [February 8, 2008, 10:12am UTC](https://forum.kirupa.com/t/asp-net-and-menu-navigation-control/251430 "2008-02-08T10:12:01Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![abdulmohsen](https://avatars.discourse-cdn.com/v4/letter/a/c2a13f/32.png) [@abdulmohsen](https://forum.kirupa.com/u/abdulmohsen)
#### Post date: [February 8, 2008, 10:12am UTC](https://forum.kirupa.com/t/asp-net-and-menu-navigation-control/251430/1 "2008-02-08T10:12:01Z")

</div>

Hello,

Is there a way to make the Menu control, available in the [ASP.NET](http://ASP.NET) class library, simulates the SiteMapPath control’s behavior. That is, for example, if i go to a certain node’s URL, it would show only the child nodes present under that URL. (see code below)

so if i am at the page “products/default.aspx” i want the Menu to display only the 3 items within (i.e. organic, synthetic and handMade)

Thank you!  
Abdul

```auto

<home URL="home.aspx">
<products URL="products/default.aspx">
      <organic/>
      <synthetic/>
      <handMade/>
</products>
<contact URL="contact.aspx">

```
