Updating the SKU as users select options/variants
Posted: Mon Dec 22, 2008 9:33 am
Is it possible to display the updated SKU on the detail page as users select different Options/Variants?
http://forums.ablecommerce.com/
Code: Select all
protected void Page_PreRender(object sender, EventArgs e)
{
......................
.........................
......................
ProductVariant productVariant = ProductVariantDataSource.LoadForOptionList(_ProductId, optionList);
if(productVariant != null)
Sku.Text = productVariant.Sku;
}