J
Jeff
hi
Below is a sitemap, how do I configure a menu control so that it doesn't
display the first element. I want the menu to not display the test1.aspx...
The reason I ask is because when I run this code the menu is created like
this:
1
2
3
4
5
6
instead I want it to be like this:
2
3
4
5
6
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="test1.aspx" title="1" description="">
<siteMapNode url="test2.aspx" title="test2" description="" />
<siteMapNode url="test3.aspx" title="test3" description="" >
<siteMapNode url="test4.aspx" title="tes4" description="" />
<siteMapNode url="test5.aspx" title="test5" description="" />
<siteMapNode url="test6.aspx" title="test6" description="" />
</siteMapNode>
</siteMapNode>
</siteMap>
any suggestions?
Below is a sitemap, how do I configure a menu control so that it doesn't
display the first element. I want the menu to not display the test1.aspx...
The reason I ask is because when I run this code the menu is created like
this:
1
2
3
4
5
6
instead I want it to be like this:
2
3
4
5
6
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="test1.aspx" title="1" description="">
<siteMapNode url="test2.aspx" title="test2" description="" />
<siteMapNode url="test3.aspx" title="test3" description="" >
<siteMapNode url="test4.aspx" title="tes4" description="" />
<siteMapNode url="test5.aspx" title="test5" description="" />
<siteMapNode url="test6.aspx" title="test6" description="" />
</siteMapNode>
</siteMapNode>
</siteMap>
any suggestions?