|
Home > Archive > Commerce Server General > February 2004 > Catalog Navigations Tabs and Retail2002
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Catalog Navigations Tabs and Retail2002
|
|
| Ryan Ross 2004-02-19, 10:36 am |
| Just out of curiousity (trying to determine if I did something wrong), does
anyone else have trouble with the Catalog Navigation tabs in the
ProductDetails.aspx page? For whatever reason, when I click on them, the
page posts back, but does not change to the Category or Catalog page...
Thanks,
Ryan
| |
| Ryan Ross 2004-02-23, 11:35 am |
| If anyone here's the fix:
'=======================================
====================================
==
' Private METHOD: CatalogTabs_Clicked
'
'' <doc>
'' <desc>CatalogTabs clicked event handler</desc>
'' <remarks>
'' Handles Click event raised by CatalogTabs.
'' </remarks>
'' <param term='sender'>Event Sender</param>
'' <param term='e'>Event Arguments</param>
'' <internalonly/>
'' </doc>
'
'=======================================
====================================
==
Private Sub CatalogTabs_Clicked(ByVal Sender As Object, ByVal e As
EventArgs) Handles catalogTabs.Click
ViewState("Catalog") = catalogTabs.Catalog
ViewState("Category") = ""
Dim paramNames(0) As String
Dim paramValues(0) As String
paramNames(0) = URLQueryParameterNames.callingPage
paramValues(0) = "ProductDetails"
CommerceApplication.ServerTransfer(catalogTabs.Url, paramNames, paramValues)
End Sub
"Ryan Ross" <ryanr@nni.com> wrote in message
news:103ajgfjsdbv662@corp.supernews.com...
> Just out of curiousity (trying to determine if I did something wrong),
does
> anyone else have trouble with the Catalog Navigation tabs in the
> ProductDetails.aspx page? For whatever reason, when I click on them, the
> page posts back, but does not change to the Category or Catalog page...
>
> Thanks,
> Ryan
>
>
|
|
|
|
|