pass it as a hidden FORM variable, or in the QueryString
--
----------------------------------------------------------
Curt Christianson (Software_AT_Darkfalz.Com)
Owner/Lead Designer, DF-Software
http://www.Darkfalz.com
---------------------------------------------------------
...Offering free scripts & code snippits for everyone...
---------------------------------------------------------
"Sean" <NO_SPAM_TO_bullrout@optusnet.com.au> wrote in message
news:OcX7Xj0RDHA.2480@tk2msftngp13.phx.gbl...[color=blue]
> 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[/color]
"camera"[color=blue]
> section I need to display that heading as a link "camera", however in[/color]
order[color=blue]
> 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[/color]
a[color=blue]
> much better way of doing this, if there is can someone help me out with[/color]
some[color=blue]
> code?
>
> Sean
>
>
>
> SQL = "SELECT Catid,catDesc,ParentCatid FROM product_categories WHERE
> Catid=" &pCatId
> set rs = db_conn.execute(SQL)
>
> Application("CategoryName") = rs(1).Value
>
>[/color]