S
Sean
HI,
I have a shopping cart in which I am trying to use breadcrumb style
navgiation. I need to be able to display the categroy heading relating to
the section of the site a visitor is using i.e If a user is in the "camera"
section I need to display that heading as a link "camera", however in order
to do this at the moment I am querying the database and storing the
recordset in the application object (see below). I should imaging there is a
much better way of doing this, if there is can someone help me out with some
code?
Sean
SQL = "SELECT Catid,catDesc,ParentCatid FROM product_categories WHERE
Catid=" &pCatId
set rs = db_conn.execute(SQL)
Application("CategoryName") = rs(1).Value
I have a shopping cart in which I am trying to use breadcrumb style
navgiation. I need to be able to display the categroy heading relating to
the section of the site a visitor is using i.e If a user is in the "camera"
section I need to display that heading as a link "camera", however in order
to do this at the moment I am querying the database and storing the
recordset in the application object (see below). I should imaging there is a
much better way of doing this, if there is can someone help me out with some
code?
Sean
SQL = "SELECT Catid,catDesc,ParentCatid FROM product_categories WHERE
Catid=" &pCatId
set rs = db_conn.execute(SQL)
Application("CategoryName") = rs(1).Value