arwakatungu
-
12/6/2006 6:23:28 PM
Blank transformation pages (Kentico 1.9 )
I am creating a custom product catalog using Kentico 1.9. The product listing come out okay but when I click a link on the listing to select a single product the page comes BLANK.
Below is the code for m datalist
<cc1:CMSDataList ID="CMSDataList1" runat="server" SelectedItemTransformationName="cms.Tariffs.default" SelectNodesClassName="cms.Tariffs" TransformationName="cms.Tariffs.preview" </cc1:CMSDataList>
It looks okay and when I do a trace debug it does pick up the default.ascx below is a sample of the code
TariffsID: <%# DataBinder.Eval(Container, "DataItem.TariffsID") %><br/> Tariff Category: <%# DataBinder.Eval(Container, "DataItem.TariffCategory") %><br/> Tariff Plan: <%# DataBinder.Eval(Container, "DataItem.TarrifName") %><br/> Moving to tariff: <%# DataBinder.Eval(Container, "DataItem.TariffMove") %><br/> Tariff Description: <%# DataBinder.Eval(Container, "DataItem.TariffDescription") %><br/>
What am I doing wrong. Have I left out something? Do I have to explicitly bind the datalist using code.
Help
|