<%#String.Format("~/storefront.aspx?CatalogID={0}&ProductID={1}", Eval("CatalogID"), Eval("ProductID"))%>
I am trying to do the following:
NavigateUrl='<%#String.Format("~/storefront.aspx?CatalogID={0}&ProductID={1}",Eval("CatalogID"), (Eval("CatalogID")=="856" ? Eval("ProductID") : Eval("CustItem")))%>
I am trying to link the item back to the page .. and I did this for every item except the ones listed in the 4006 directory ... url looks like this: storefront.aspx? CatalogID = 856 & ProductID = AVE05418 this example refers to one of the catalog 856, the problem is that the productid is passed in the url is actually the CustItem variable, so I'm trying to pass CustItem instead of ProductID when the catalog contains 856
thanks
Joe w source share