In the starter site, on Browse.aspx, the CommerceSite.Controls namespace is declared at the beginning of the page and the ProductList.ascx control is registered immediately after.
This let's you drop a <site:ProductList> user control in to display products whose data comes from ProductFilterDataSource.
I've got the need to dynamically create ProductList user controls (quantity from 1-n) depending on the category and I need to do it from code behind.
I'm having problems registering and namespace and user ProductList user control properly so that my Browse.aspx.cs code behind file can utilize it.
Clear as mud Thanks for any suggestions.
Brad