02-23-04 04:35 PM
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
>
>
[ Post a follow-up to this message ]
|