电子商务动态面包屑最佳实践 - 您是如何做的?
我正在寻找一种最佳实践,为我的电子商务网站的用户提供面包屑路径。
当前站点设置:
ASp.net 3.5 SQL Express 2005 DB
DB 表设置:
[类别] - ID、parentid、名称等 [产品] - ID catID 名称
我是否应该使用 sqlsitemap 提供程序,并且每次保存产品时都将其添加到 Sitemap 表中?
有没有更动态的方式来达到预期的结果?
寻找您的想法/想法来实现这一目标。
提前致谢。
I am looking for a best practice to provide users of my ecommerce website with a breadcrumb trail.
Current Site Setup:
ASp.net 3.5
SQL express 2005 DB
DB Table Setup:
[Category] - ID, parentid, name etc
[Product] - ID catID name
Should i use a sqlsitemap provider and everytime i save a product add it to the Sitemap table ?
is there a more dynamic way to achieve the desired result ?
looking for your thoughts / ideas to achieve this.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这篇文章可能有助于创建您需要的 SQL 提供程序可以与 asp.net 中的默认面包屑一起使用。 它还具有 SQL 缓存,可以实现更快的响应。
There is this artictle which may help with creating the sql provider that you can use with the default breadcrumb in asp.net. It also has sql caching for a speadier response too.