I do not know what version I upgraded from. I followed the instructions and save the template list below. How do I get the template to display with the products on the buynow page? I had it as three columns 9 products per page. Thanks
<table class="products">
<tr>
<td class="prodCell">
<ASP:LABEL ID="lblProductName" runat="server" Text='<%# Eval("ProductName") %>' CssClass="SmithLargeText" />
</td>
</tr>
<tr class="SmithRowAlignBottom">
<td class="prodCell2">
<br />
<ASP:LABEL runat="server" ID="lblPrice" CssClass="SmithLargeText" Text='<%# Eval("Price","{0:c}") %>' />
<ASP:TEXTBOX runat="server" ID="txtPrice" Width="50px" MaxLength="8" Visible="false" />
<ASP:LABEL ID="lblPriceUnits" runat="server" Text='<% #Eval("PriceUnits") %>' CssClass="SmithProdText"/>
</td>
</tr>
<tr runat="server" ID="trQty" visible="false">
<td class="prodCell2">
<ASP:LABEL runat="server" ID="lblQtyLabel" resourcekey="lblQtyLabel" CssClass="SmithProdText" />
<ASP:TEXTBOX ID="txtQuantity" Width="50px" MaxLength="8" CssClass="SmithProdText" runat="server" Text="1" />
</td>
</tr>
<tr>
<td class="prodCell2">
<%--<ASP:Button ID="btnSelect" runat="server" OnClick="btnSelect_Click" resourcekey="btnSelect" CausesValidation="false" CssClass="scButtonClass" />--%>
<ASP:BUTTON ID="btnSelect" runat="server" resourcekey="btnSelect" CommandName="SelectProduct" CausesValidation="false" CssClass="scButtonClass" />
</td>
</tr>
<tr>
<td class="prodCell2">
<ASP:LABEL ID="Label1" runat="server" Text='<%# Eval("Description") %>' CssClass="SmithProdName" />
</td>
</tr>
<tr>
<td class="prodCell2">
<ASP:LABEL ID="hndProductID" runat="server" Text='<% #Eval("ProductID") %>' Visible="false" />
<ASP:LABEL ID="lblShowQty" runat="server" Text='<% #Eval("ShowQuantity") %>' Visible="false" />
<ASP:LABEL ID="lblUserEnteredAmount" runat="server" Text='<% #Eval("UserEnteredAmount") %>' Visible="false" />
</td>
</tr>
</table>