<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>ProductCart Shopping Cart Software Forums : Page Navigati&#111;n - Brand</title>
  <link>https://forum.productcart.com/</link>
  <description><![CDATA[This is an XML content feed of; ProductCart Shopping Cart Software Forums : Customizing ProductCart : Page Navigati&#111;n - Brand]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 12 Apr 2026 09:10:16 +0000</pubDate>
  <lastBuildDate>Thu, 21 Feb 2008 15:44:53 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forum.productcart.com/RSS_post_feed.asp?TID=1391</WebWizForums:feedURL>
  <image>
   <title><![CDATA[ProductCart Shopping Cart Software Forums]]></title>
   <url>https://forum.productcart.com/forum_images/pc_logo_50.png</url>
   <link>https://forum.productcart.com/</link>
  </image>
  <item>
   <title><![CDATA[Page Navigati&#111;n - Brand : Dan - I explained the alternatives...]]></title>
   <link>https://forum.productcart.com/page-navigation-brand_topic1391_post4174.html#4174</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=290">Greg Dinger</a><br /><strong>Subject:</strong> 1391<br /><strong>Posted:</strong> 21-February-2008 at 3:44pm<br /><br /><P>Dan - I explained the alternatives (the&nbsp;approach he has implemented versus generating an include file)&nbsp;to him yesterday when he asked me to bid the project. </P><P>The one thing he missed was to close and destroy the recordset and db connection.&nbsp; </P><span style="font-size:10px"><br /><br />Edited by Greg Dinger - 21-February-2008 at 4:03pm</span>]]>
   </description>
   <pubDate>Thu, 21 Feb 2008 15:44:53 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/page-navigation-brand_topic1391_post4174.html#4174</guid>
  </item> 
  <item>
   <title><![CDATA[Page Navigati&#111;n - Brand : Whenever you&amp;#039;re doing something...]]></title>
   <link>https://forum.productcart.com/page-navigation-brand_topic1391_post4173.html#4173</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=77">netprofits</a><br /><strong>Subject:</strong> 1391<br /><strong>Posted:</strong> 21-February-2008 at 3:35pm<br /><br /><P>Whenever you're doing something like this where the ASP code needs to run on every page of the site to load information from the database (i.e. its in the header file), we recommend moving that code into the control panel and only running the routine when you modify your brands. You would create a new ASP page in the control panel that&nbsp; creates your HTML list and writes it out to an HTML&nbsp;include file. Then your header.asp file would just include the brands list include file.</P><P>This is the same concept behind the Product Cart "Generate Navigation" function. It increases performance of each page and decreases load on your database.</P><P>You could review the pcadmin/gencatnavigation.asp to see how it does this.</P>]]>
   </description>
   <pubDate>Thu, 21 Feb 2008 15:35:38 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/page-navigation-brand_topic1391_post4173.html#4173</guid>
  </item> 
  <item>
   <title><![CDATA[Page Navigati&#111;n - Brand : I got the brand list to appear...]]></title>
   <link>https://forum.productcart.com/page-navigation-brand_topic1391_post4172.html#4172</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=932">knifepro</a><br /><strong>Subject:</strong> 1391<br /><strong>Posted:</strong> 21-February-2008 at 3:27pm<br /><br /><P>I got the brand list to appear and link to the correct brand but if you click on a Brand that does not have any products then I get an error message in the brand list.</P><P>Here is the code I am using. Any suggestions:</P><P><table width="99%"><tr><td><pre class="BBcode">&lt;table&gt;<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &lt;%<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Show brands, if any<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;query="Select * from Brands order by BrandName asc"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;set rstemp4=Server.CreateObject("ADODB.Recordset")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;set rstemp4=connTemp.execute(query)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if not rstemp4.eof then%&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;%do while not rstemp4.eof%&gt;<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;tr&gt;<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;td&gt;<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;a  href="showsearchresults.asp?IDBrand=&lt;%=rstemp4("IDBrand") %&gt;&amp;iPageSize=9"&gt;&lt;%=rstemp4("BrandName")%&gt;&lt ;/a&gt;<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/td&gt;<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/tr&gt;<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;%rstemp4.MoveNext<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;loop%&gt;<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;/td&gt;<BR>&nbsp; &lt;/tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;%end if%&gt;<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &lt;/table&gt;</pre></td></tr></table></P><P>My development site is located at: <A href="http://208.75.248.150/store/pc/home.asp" target="_blank">http://208.75.248.150/store/pc/home.asp</A>. I am new to ASP. I am using MS SQL database. Do anyone see a problem with over taxing the database?&nbsp; I will have about 80 brands.</P>]]>
   </description>
   <pubDate>Thu, 21 Feb 2008 15:27:27 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/page-navigation-brand_topic1391_post4172.html#4172</guid>
  </item> 
  <item>
   <title><![CDATA[Page Navigati&#111;n - Brand : Preparing such a list is as simple...]]></title>
   <link>https://forum.productcart.com/page-navigation-brand_topic1391_post4158.html#4158</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=290">Greg Dinger</a><br /><strong>Subject:</strong> 1391<br /><strong>Posted:</strong> 20-February-2008 at 11:19am<br /><br /><P>Preparing such a list is as simple as opening a recordset, looping through the records and writing the code in the form you desire (Assuming you want it dynamic.)&nbsp; If you are comfortable with ASP scripting, viewbrands.asp would be a good page to reference for constructing such a module.&nbsp; Or a developer could build that for you.</P><P>Alternatively, a hard-coded dropdown would also be easy to code. You would have to maintain it when the available brands change, but the code would be fairly simple.</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Wed, 20 Feb 2008 11:19:08 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/page-navigation-brand_topic1391_post4158.html#4158</guid>
  </item> 
  <item>
   <title><![CDATA[Page Navigati&#111;n - Brand : I would like to include to a Shop...]]></title>
   <link>https://forum.productcart.com/page-navigation-brand_topic1391_post4157.html#4157</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=932">knifepro</a><br /><strong>Subject:</strong> 1391<br /><strong>Posted:</strong> 20-February-2008 at 11:02am<br /><br /><P>I would like to include to a Shop By Brand&nbsp;list on all my pages like the Browse by Category list? The Shop by Brand could be a drop-down menu or a full list. Has anyone else added a menu like this. If so I would appreciate the code help. I am new to ProductCart.</P>]]>
   </description>
   <pubDate>Wed, 20 Feb 2008 11:02:03 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/page-navigation-brand_topic1391_post4157.html#4157</guid>
  </item> 
 </channel>
</rss>