How do I get inventory and backorder to display with each prodcut on a catalog page?
For \dashcommerce\Commerce.Web\Modules\Products\ProductTopDisplay.ascx, I have created an inventory and backorder display (which displays whenever a Product is selected) as
<h4><%=product.ProductName %></h4>
<h4>Inventory <%=product.Inventory %></h4>
<h4>Backorder <%=product.Backorder %></h4>
and
but for \dashcommerce\Commerce.Web\Modules\Products\ProductSummaryDisplay.ascx, the display does not work (when the catalog is shown with various products) as
<div>
<%=Inventory %>
</div>
<div>
<%=Backorder %>
</div>
with \dashcommerce\Commerce.Web\Modules\Products\ProductSummaryDisplay.ascx.cs
public string Inventory;
public string Backorder;
My dashcommerce version is 2.2, using VS 2005 to edit, SQLExpress for database, and IIS 6.0 with 2.0 framework.
Any ideas?