•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the ASP.NET section within the Web Development category of DaniWeb, a massive community of 426,182 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 1,794 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our ASP.NET advertiser: Lunarpages ASP Web Hosting
Views: 1157 | Replies: 4
![]() |
•
•
Join Date: Apr 2007
Location: Richmond, BC, Canada
Posts: 44
Reputation:
Rep Power: 2
Solved Threads: 0
hi,
this is my first post in this forum...
i have an ASP.NET project in school, and i need some help with the sitemaps
this is my folder, i upload it here
my problem is that the on the side menu, i get Home, Products, Services, and Shopping Cart.
but what i need (and i tried to do it so many times, but didn`t work)--> i am trying to have a sub- category..
For example: instead of saying:
HOME
PRODUCTS
SERVICES
SHOPPING CART
i want this structure:
HOME
PRODUCTS
PRODUCT1
PRODUCT2
SEVICES
SERVICE1
SERVICE2
SHOPPING CART
so i am trying to create sub- categories
my siteMap seems ok, but i don`t seem to get what i need
:rolleyes:
i appreciate any help
thanks
this is my first post in this forum...
i have an ASP.NET project in school, and i need some help with the sitemaps
this is my folder, i upload it here
my problem is that the on the side menu, i get Home, Products, Services, and Shopping Cart.
but what i need (and i tried to do it so many times, but didn`t work)--> i am trying to have a sub- category..
For example: instead of saying:
HOME
PRODUCTS
SERVICES
SHOPPING CART
i want this structure:
HOME
PRODUCTS
PRODUCT1
PRODUCT2
SEVICES
SERVICE1
SERVICE2
SHOPPING CART
so i am trying to create sub- categories
my siteMap seems ok, but i don`t seem to get what i need
:rolleyes:
i appreciate any help
thanks
•
•
Join Date: Apr 2007
Location: Richmond, BC, Canada
Posts: 44
Reputation:
Rep Power: 2
Solved Threads: 0
•
•
Join Date: Apr 2007
Location: Richmond, BC, Canada
Posts: 44
Reputation:
Rep Power: 2
Solved Threads: 0
Try this and see if this solves your problem.
<?xmlversion="1.0"encoding="utf-8" ?>
<siteMapxmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNodeurl="~/Default.aspx"title="Home"description="Site Home Page">
<siteMapNodeurl="~/Products/productLists.aspx"title="Products"description="Show All Major Categories" />
<siteMapNoderoles=""url="~/Products/MusicalInstruments/musicalInstruments.aspx"title="Musical Instruments"description="Show 1st Product Category" />
<siteMapNodeurl="~/Products/MusicListing/musiclistings.aspx"title="Music Listing"description="Show 2nd Product Category" />
<siteMapNodeurl="~/Products/Books/books.aspx"title="Books"description="Show 3rd Product Category" />
<siteMapNodeurl="~/Products/History/history.aspx"title="History"description="Show 4th Product Category" />
<siteMapNodeurl="~/Products/Videos/videos.aspx"title="Videos"description="Show 5th Product Category" />
<siteMapNodeurl="~/Services/serviceLists.aspx"title="Services"description="" />
<siteMapNodeurl="~/Serivces/BestSellers/bestsellers.aspx"title="Best Sellers"description="Show 6th Product Category"/>
<siteMapNodeurl="~/Services/Events/events.aspx"title="Events"description="Show 7th Product Category" />
<siteMapNodeurl="~/Servicecs/Specials/specials.aspx"title="Specials"description="Show 8th Product Category" />
<siteMapNodeurl="~/Services/StoreHours/storeHours.aspx"title="Store Hours"description="Show 9th Product Category" />
<siteMapNodeurl="~/ShoppingCart/shoppingCart.aspx"title="Shopping Cart"description="Show 10th Product Category" >
</siteMapNode>
</siteMapNode>
</siteMap>
<?xmlversion="1.0"encoding="utf-8" ?>
<siteMapxmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNodeurl="~/Default.aspx"title="Home"description="Site Home Page">
<siteMapNodeurl="~/Products/productLists.aspx"title="Products"description="Show All Major Categories" />
<siteMapNoderoles=""url="~/Products/MusicalInstruments/musicalInstruments.aspx"title="Musical Instruments"description="Show 1st Product Category" />
<siteMapNodeurl="~/Products/MusicListing/musiclistings.aspx"title="Music Listing"description="Show 2nd Product Category" />
<siteMapNodeurl="~/Products/Books/books.aspx"title="Books"description="Show 3rd Product Category" />
<siteMapNodeurl="~/Products/History/history.aspx"title="History"description="Show 4th Product Category" />
<siteMapNodeurl="~/Products/Videos/videos.aspx"title="Videos"description="Show 5th Product Category" />
<siteMapNodeurl="~/Services/serviceLists.aspx"title="Services"description="" />
<siteMapNodeurl="~/Serivces/BestSellers/bestsellers.aspx"title="Best Sellers"description="Show 6th Product Category"/>
<siteMapNodeurl="~/Services/Events/events.aspx"title="Events"description="Show 7th Product Category" />
<siteMapNodeurl="~/Servicecs/Specials/specials.aspx"title="Specials"description="Show 8th Product Category" />
<siteMapNodeurl="~/Services/StoreHours/storeHours.aspx"title="Store Hours"description="Show 9th Product Category" />
<siteMapNodeurl="~/ShoppingCart/shoppingCart.aspx"title="Shopping Cart"description="Show 10th Product Category" >
</siteMapNode>
</siteMapNode>
</siteMap>
•
•
Join Date: Apr 2007
Location: Richmond, BC, Canada
Posts: 44
Reputation:
Rep Power: 2
Solved Threads: 0
•
•
•
•
Try this and see if this solves your problem.
<?xmlversion="1.0"encoding="utf-8" ?>
<siteMapxmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNodeurl="~/Default.aspx"title="Home"description="Site Home Page">
<siteMapNodeurl="~/Products/productLists.aspx"title="Products"description="Show All Major Categories" />
<siteMapNoderoles=""url="~/Products/MusicalInstruments/musicalInstruments.aspx"title="Musical Instruments"description="Show 1st Product Category" />
<siteMapNodeurl="~/Products/MusicListing/musiclistings.aspx"title="Music Listing"description="Show 2nd Product Category" />
<siteMapNodeurl="~/Products/Books/books.aspx"title="Books"description="Show 3rd Product Category" />
<siteMapNodeurl="~/Products/History/history.aspx"title="History"description="Show 4th Product Category" />
<siteMapNodeurl="~/Products/Videos/videos.aspx"title="Videos"description="Show 5th Product Category" />
<siteMapNodeurl="~/Services/serviceLists.aspx"title="Services"description="" />
<siteMapNodeurl="~/Serivces/BestSellers/bestsellers.aspx"title="Best Sellers"description="Show 6th Product Category"/>
<siteMapNodeurl="~/Services/Events/events.aspx"title="Events"description="Show 7th Product Category" />
<siteMapNodeurl="~/Servicecs/Specials/specials.aspx"title="Specials"description="Show 8th Product Category" />
<siteMapNodeurl="~/Services/StoreHours/storeHours.aspx"title="Store Hours"description="Show 9th Product Category" />
<siteMapNodeurl="~/ShoppingCart/shoppingCart.aspx"title="Shopping Cart"description="Show 10th Product Category" >
</siteMapNode>
</siteMapNode>
</siteMap>
thanks man for trying
yours didn`t work
but i made it work
anyways thanks
![]() |
•
•
•
•
•
•
•
•
DaniWeb ASP.NET Marketplace
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
- can someone plz help me with this? (Visual Basic 4 / 5 / 6)
- I NEED SUPPORT **"IMPORTANT"** PLZ HELP (Windows NT / 2000 / XP / 2003)
- Windows media player (Windows NT / 2000 / XP / 2003)
- PLZ help it's urgent! (Web Browsers)
- plz help ppl...... (Computer Science and Software Design)
Other Threads in the ASP.NET Forum
- Previous Thread: OleDB Connection
- Next Thread: How to create a login page using ASp.net 2.0 c#


Linear Mode