Substitute ctrlCategoryNavigation

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 年 前
Is it possible to substitute the category navigation control with a static menu? I would like to use my menu control, but have it display the product information within an existing aspx page.

Any suggestions?

Thanks!

Gary
13 年 前
you could remove the control from the master page and replace it with your own but you would have to use the existing formats to reach the product/category pages

eg

http://localhost:8242/products/123-your-item.aspx
http://localhost:8242/category/123-your-category.aspx

and i think it would be best to implement it like so

<a href="<%=Page.ResolveUrl("~/category/123-your-category.aspx")%>">
your category
</a>
13 年 前
Thanks!

I've tried that a bit, but realize the layout needs to be managed. I thought it may be possible to add the product details description to an existing aspx page via a custom category control, but I still need to work on it a bit more

Yes, that particular url format seems to manage the directory path better.

--Gary
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.